Skip to content

Commit f914a0b

Browse files
committed
fix pep8
1 parent 5939b3f commit f914a0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_choicesenum.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ def test_dynamic_is_attr_of_undefined_enums_should_fail(colors):
7070

7171
@pytest.mark.parametrize('attr', ['is_red', 'is_blue', 'is_green'])
7272
def test_dynamic_is_attr_should_be_in_dir(colors, attr):
73-
assert attr in dir(colors.RED)
73+
assert attr in dir(colors.RED)
7474

7575

7676
@pytest.mark.parametrize('attr', ['RED', 'BLUE', 'GREEN'])
7777
def test_enum_type_name_should_be_in_dir(colors, attr):
78-
assert attr in dir(colors)
78+
assert attr in dir(colors)
7979

8080

8181
@pytest.mark.skipif(sys.version_info < (3, 0), reason="requires python3")

0 commit comments

Comments
 (0)