Skip to content

Commit 2ab6476

Browse files
committed
Stop testing invalid windows characters.
1 parent 678522f commit 2ab6476

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/py/tests/test_path_tools.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ def test_next_filename_similar_names_ignored(tmp_path):
4747

4848
def test_next_filename_special_characters(tmp_path):
4949
"""Test _next_filename with special characters in prefix and extension."""
50-
prefix = "test-?f$ile_name"
51-
ext = "s$v&*g" # set up to be parameterized but not
50+
prefix = "test-f$ile_name"
51+
ext = "s$v&g" # set up to be parameterized but not
5252

5353
# Create some files
5454
(tmp_path / f"{prefix}.{ext}").touch()
@@ -75,7 +75,7 @@ def test_next_filename_only_numbered_files(tmp_path):
7575
(
7676
{
7777
"layout": {
78-
"title": {"text": "My-Test!@#$%^&*()Chart_with[lots]of{symbols}"},
78+
"title": {"text": "My-Test!@#$%^&()Chart_with[lots]of{symbols}"},
7979
},
8080
},
8181
"My_TestChart_withlotsofsymbols",

0 commit comments

Comments
 (0)