diff options
author | Maxim Devaev <[email protected]> | 2024-05-13 17:52:04 +0300 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2024-05-13 17:52:04 +0300 |
commit | 9158abfab4ca2a96d1bf9a80e09f9c696c0dc7d8 (patch) | |
tree | f71a59690a55d8a2e3179afa1310d13854316688 /testenv/tests/validators/test_os.py | |
parent | bf87f036d36fb587ea2db88efd60ee7fefcdd1cf (diff) |
lint fixes
Diffstat (limited to 'testenv/tests/validators/test_os.py')
-rw-r--r-- | testenv/tests/validators/test_os.py | 2 |
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()) |