Skip to content

Commit fd90fcc

Browse files
committed
noqa
1 parent a3eee0e commit fd90fcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/validators/test_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_list_strict():
4343

4444
def test_list_no_copy():
4545
v = SchemaValidator({'type': 'list'})
46-
assert v.validate_python([1, 2, 3]) != [1, 2, 3]
46+
assert v.validate_python([1, 2, 3]) is not [1, 2, 3] # noqa: F632
4747

4848

4949
def gen_ints():

0 commit comments

Comments
 (0)