Skip to content

Commit

Permalink
#51 fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
wswld committed Jul 17, 2018
1 parent 8803732 commit 189642e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions test/test_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,15 @@ class Mytest(object):
setattr(Mytest, 'test_hello', data_hello)
ddt_mytest = ddt(Mytest)

assert_equal(getattr(getattr(ddt_mytest, 'test_hello_1_case1'), '__doc__'), d1.__doc__)
assert_equal(getattr(getattr(ddt_mytest, 'test_hello_2_case2'), '__doc__'), hello.__doc__)
assert_equal(
getattr(
getattr(ddt_mytest, 'test_hello_1_case1'), '__doc__'), d1.__doc__
)
assert_equal(
getattr(
getattr(ddt_mytest, 'test_hello_2_case2'), '__doc__'),
hello.__doc__
)


def test_ddt_data_unicode():
Expand Down

0 comments on commit 189642e

Please sign in to comment.