Skip to content

Commit ea64d35

Browse files
committed
Fix test
1 parent 449c88c commit ea64d35

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

StringSpyTest/StringsFinderTest.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ private static string GetTestDataPath(string fileName)
4747

4848
public static IEnumerable<object[]> TestFiles =>
4949
[
50-
[new TestFile(GetTestDataPath("ascii.txt"), 611, 355, 24, 83, 0, 0)],
51-
[new TestFile(GetTestDataPath("ascii_random.txt"), 1573, 272, 1, 1, 0, 0)],
52-
[new TestFile(GetTestDataPath("utf8.txt"), 619, 372, 56, 107, 0, 0)],
53-
[new TestFile(GetTestDataPath("utf8_random.txt"), 0, 635, 77, 76, 0, 0)],
54-
[new TestFile(GetTestDataPath("utf16le.txt"), 67, 102, 665, 876, 0, 0)],
55-
[new TestFile(GetTestDataPath("utf16le_random.txt"), 2379, 7055, 531, 524, 0, 0)],
56-
[new TestFile(GetTestDataPath("utf16be.txt"), 63, 85, 796, 633, 0, 0)],
57-
[new TestFile(GetTestDataPath("utf16be_random.txt"), 2341, 7073, 528, 536, 0, 0)],
50+
[new TestFile(GetTestDataPath("ascii.txt"), 611, 355)],
51+
[new TestFile(GetTestDataPath("ascii_random.txt"), 1573, 272)],
52+
[new TestFile(GetTestDataPath("utf8.txt"), 619, 372)],
53+
[new TestFile(GetTestDataPath("utf8_random.txt"), 0, 635)],
54+
[new TestFile(GetTestDataPath("utf16le.txt"), 67, 102, 665, 876)],
55+
[new TestFile(GetTestDataPath("utf16le_random.txt"), 2379, 7055, 531, 524)],
56+
[new TestFile(GetTestDataPath("utf16be.txt"), 63, 85, 796, 633)],
57+
[new TestFile(GetTestDataPath("utf16be_random.txt"), 2341, 7073, 528, 536)],
5858
];
5959

6060
[Theory(DisplayName = "String counts equal expected counts")]

0 commit comments

Comments
 (0)