Skip to content

Commit 85abd70

Browse files
committed
Fix resolution ambiguity in CollectionExtensionTests
happened with `$(TestProjTargetFrameworkOverride)` set, as in GitLab CI
1 parent 1890211 commit 85abd70

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/BizHawk.Tests.Common/CollectionExtensions/CollectionExtensionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public void TestAddRange()
6666
public void TestChunk()
6767
=> CollectionAssert.AreEqual(
6868
new[] { "1234", "5678", "910" },
69-
new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }.Chunk(4).Select(static a => string.Concat(a)).ToArray(),
69+
CE.Chunk(new[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }, 4).Select(static a => string.Concat(a)).ToArray(),
7070
"simple test of ints as decimal strings"); // since it's a BCL backport
7171

7272
[TestMethod]

0 commit comments

Comments
 (0)