Skip to content

Commit 3a6a13d

Browse files
authored
Fix copy&paste globalization test bug (dotnet/corefx#41624)
Commit migrated from dotnet/corefx@c109287
1 parent 0515224 commit 3a6a13d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/libraries/System.Globalization/tests/CompareInfo/CompareInfoTests.IndexOf.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static IEnumerable<object[]> IndexOf_TestData()
3939

4040
// Slovak
4141
yield return new object[] { s_slovakCompare, "ch", "h", 0, 2, CompareOptions.None, -1 };
42-
yield return new object[] { s_slovakCompare, "chodit hore", "HO", 0, 2, CompareOptions.IgnoreCase, -1 };
42+
yield return new object[] { s_slovakCompare, "chodit hore", "HO", 0, 11, CompareOptions.IgnoreCase, 7 };
4343
yield return new object[] { s_slovakCompare, "chh", "h", 0, 3, CompareOptions.None, 2 };
4444

4545
// Turkish

0 commit comments

Comments
 (0)