Skip to content

Commit

Permalink
Pep8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kmckinnis committed Aug 19, 2016
1 parent 9ac5673 commit 984c1cb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cualid/tests/test_mint.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ def test_create_ids_fail(self):
result = list(create_ids(1000, 3))
self.assertTrue(len(result) > 0)
self.assertTrue(len(result) < 1000)

def test_create_ids_API(self):
result = list(create_ids(100,7))
result = list(create_ids(100, 7))
self.assertTrue(len(str(result[0][0])) < 10)
self.assertTrue(len(str(result[0][1])) > 10)

Expand Down

0 comments on commit 984c1cb

Please sign in to comment.