Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
bmyerz committed Jul 1, 2014
1 parent 4d42a15 commit 5c9bb14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion raco/datalog/query_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,4 +287,4 @@ def test_literal_expr(self):
"""
expected = collections.Counter([(z + 1,)
for (z, _) in self.edge_table])
self.check_result(query, expected)
self.check_result(query, expected)
2 changes: 1 addition & 1 deletion raco/datastructure/test_union_find.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ def test_union(self):
uf.union(2, 5)
self.assertEqual(uf.get_or_insert(2), uf.get_or_insert(5))
uf.union(2, 1)
self.assertEqual(uf.get_or_insert(10), uf.get_or_insert(5))
self.assertEqual(uf.get_or_insert(10), uf.get_or_insert(5))

0 comments on commit 5c9bb14

Please sign in to comment.