Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Havlik committed Sep 15, 2017
1 parent c6a9947 commit 69fdc2e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_Utilities.py
Expand Up @@ -10,11 +10,12 @@ def test_Utilities__test_1():


def test_Utilities__test_2():
"""If the above is not met, and there is an extra argument it returns it."""
"""If the above is not met, and there is an extra argument
it returns it."""
assert test(False, 1, False, 2, 3) == 3
assert test(False, 1, 2) == 2
assert test(1) == 1
assert test(False) == False
assert not test(False)


def test_Utilities__test_3():
Expand Down

0 comments on commit 69fdc2e

Please sign in to comment.