summaryrefslogtreecommitdiff
path: root/tests/test_atlocation.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_atlocation.py')
-rw-r--r--tests/test_atlocation.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/test_atlocation.py b/tests/test_atlocation.py
index 5d7286a..b107975 100644
--- a/tests/test_atlocation.py
+++ b/tests/test_atlocation.py
@@ -95,13 +95,8 @@ class AtLocationTest(unittest.TestCase):
if filetype == "symlink" and loctype != "emptypath":
follow_symlinks_values.append(False)
for follow_symlinks in follow_symlinks_values:
- # Mypy fails to see that loctype and filetype really are
- # literals rather than arbitrary strings.
atlocctx = self.create(
- loctype, # type: ignore[arg-type]
- filetype, # type: ignore[arg-type]
- "X",
- follow_symlinks,
+ loctype, filetype, "X", follow_symlinks
)
yield (filetype, atlocctx)