summaryrefslogtreecommitdiff
path: root/tests/test_ns_enum.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_ns_enum.py')
-rw-r--r--tests/test_ns_enum.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_ns_enum.py b/tests/test_ns_enum.py
index 312c454..7a30718 100644
--- a/tests/test_ns_enum.py
+++ b/tests/test_ns_enum.py
@@ -42,7 +42,7 @@ from natsort import ns
("NL", 0x0400),
("CN", 0x0800),
("NA", 0x1000),
- ]
+ ],
)
-def test_ns_enum(given, expected):
+def test_ns_enum(given: str, expected: int) -> None:
assert ns[given] == expected