Skip to content

Commit 684294f

Browse files
committed
Fixed some remaining unit tests
1 parent 238f31b commit 684294f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

UnitTests/UnitTests.HighPerformance.Shared/Memory/Test_Memory2D{T}.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ public void Test_Memory2DT_ToString()
536536
// Here we just want to verify that the type is nicely printed as expected, along with the size
537537
string text = memory2d.ToString();
538538

539-
const string expected = "Microsoft.Toolkit.HighPerformance.Memory.Memory2D<System.Int32>[2, 3]";
539+
const string expected = "Microsoft.Toolkit.HighPerformance.Memory2D<System.Int32>[2, 3]";
540540

541541
Assert.AreEqual(text, expected);
542542
}

UnitTests/UnitTests.HighPerformance.Shared/Memory/Test_ReadOnlyMemory2D{T}.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ public void Test_ReadOnlyMemory2DT_ToString()
484484

485485
string text = memory2d.ToString();
486486

487-
const string expected = "Microsoft.Toolkit.HighPerformance.Memory.ReadOnlyMemory2D<System.Int32>[2, 3]";
487+
const string expected = "Microsoft.Toolkit.HighPerformance.ReadOnlyMemory2D<System.Int32>[2, 3]";
488488

489489
Assert.AreEqual(text, expected);
490490
}

UnitTests/UnitTests.HighPerformance.Shared/Memory/Test_ReadOnlySpan2D{T}.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ public void Test_ReadOnlySpan2DT_ToString()
636636

637637
string text = span2d.ToString();
638638

639-
const string expected = "Microsoft.Toolkit.HighPerformance.Memory.ReadOnlySpan2D<System.Int32>[2, 3]";
639+
const string expected = "Microsoft.Toolkit.HighPerformance.ReadOnlySpan2D<System.Int32>[2, 3]";
640640

641641
Assert.AreEqual(text, expected);
642642
}

UnitTests/UnitTests.HighPerformance.Shared/Memory/Test_Span2D{T}.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ public void Test_Span2DT_ToString()
823823
// Verify that we get the nicely formatted string
824824
string text = span2d.ToString();
825825

826-
const string expected = "Microsoft.Toolkit.HighPerformance.Memory.Span2D<System.Int32>[2, 3]";
826+
const string expected = "Microsoft.Toolkit.HighPerformance.Span2D<System.Int32>[2, 3]";
827827

828828
Assert.AreEqual(text, expected);
829829
}

0 commit comments

Comments
 (0)