Skip to content

Commit

Permalink
Fix test from last-minute max-length change in last commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeyer committed Jun 24, 2024
1 parent c1860a2 commit c142d86
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions nion/swift/test/Utility_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ def test_simplify_filename(self):
test_filenames = [("test.bmp", "test.bmp"),
(r"5/3/2024.txt", r"5_3_2024.txt"),
("50µm.png", "50µm.png"),
("123456789012345678901234567890123456789012345678901234567890.123456",
"123456789012345678901234567890123456789012345678901234567.123456"),
("1234567890" * 13 + ".1234567", "1234567890" * 12 + ".1234567"),
("NUL", "_NUL"),
(".", "_"),
("a\N{WARNING SIGN}b", "a\N{WARNING SIGN}b"),
Expand Down

0 comments on commit c142d86

Please sign in to comment.