Skip to content

Commit d64f1c6

Browse files
committed
fix linter issues
1 parent d6981c6 commit d64f1c6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_fields.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -890,8 +890,8 @@ def test_types(self):
890890
class WrongType:
891891
pass
892892
x = WrongType()
893-
field1 = fields.Wildcard(WrongType)
894-
field2 = fields.Wildcard(x)
893+
field1 = fields.Wildcard(WrongType) # noqa
894+
field2 = fields.Wildcard(x) # noqa
895895

896896
def test_defaults(self):
897897
field = fields.Wildcard(fields.String)
@@ -989,7 +989,7 @@ class Dummy3(object):
989989
result5 = api.marshal(data5, wild_fields5)
990990
result6 = api.marshal(data6, wild_fields6)
991991
result7 = api.marshal(data7, wild_fields7, skip_none=True)
992-
result8 = api.marshal(data8, wild_fields7, skip_none=True)
992+
result8 = api.marshal(data8, wild_fields8, skip_none=True)
993993

994994
assert expected1 == result1
995995
assert expected2 == result2

0 commit comments

Comments
 (0)