summaryrefslogtreecommitdiff
path: root/testenv/tests/validators/test_os.py
diff options
context:
space:
mode:
Diffstat (limited to 'testenv/tests/validators/test_os.py')
-rw-r--r--testenv/tests/validators/test_os.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testenv/tests/validators/test_os.py b/testenv/tests/validators/test_os.py
index 30981308..8fb5236b 100644
--- a/testenv/tests/validators/test_os.py
+++ b/testenv/tests/validators/test_os.py
@@ -124,7 +124,7 @@ def test_fail__valid_printable_filename(arg: Any) -> None:
@pytest.mark.parametrize("arg", [0, 5, "1000"])
def test_ok__valid_unix_mode(arg: Any) -> None:
value = valid_unix_mode(arg)
- assert type(value) == int # pylint: disable=unidiomatic-typecheck
+ assert type(value) is int # pylint: disable=unidiomatic-typecheck
assert value == int(str(value).strip())