diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-11-15 00:18:32 +0100 |
---|---|---|
committer | jose.lausuch <jose.lausuch@ericsson.com> | 2016-11-15 00:20:33 +0100 |
commit | 73c4d745bf2bba060dc8301a9127482f01318de1 (patch) | |
tree | d0f37c2e819b518f952dcfe743672f2be45685d4 /tests | |
parent | 55649ff33c7c92a0ba2d08ebf15a21f3df9ae781 (diff) |
Fix all the flake8 violations in the repo
Change-Id: I05109298835c26a1927a490f8c21dd2ca7f77947
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/NAME_tests.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/NAME_tests.py b/tests/NAME_tests.py index 9f83104c..e95004bc 100644 --- a/tests/NAME_tests.py +++ b/tests/NAME_tests.py @@ -1,11 +1,11 @@ -from nose.tools import * -import NAME def setup(): - print "SETUP!" + print "SETUP!" + def teardown(): - print "TEAR DOWN!" + print "TEAR DOWN!" + def test_basic(): - print "I RAN!" + print "I RAN!" |