fix invalid unit tests(BeEquilvalentTo -> Equal)

This commit is contained in:
neuecc
2021-04-06 13:02:35 +09:00
parent 89ae106ea7
commit aa3216e48d
17 changed files with 222 additions and 222 deletions

View File

@@ -276,8 +276,8 @@ namespace NetCoreTests
reference.Writer.TryComplete();
channel.Writer.TryComplete();
(await ta1).Should().BeEquivalentTo(new[] { 10, 20, 30 });
(await ta2).Should().BeEquivalentTo(new[] { 10, 20, 30 });
(await ta1).Should().Equal(new[] { 10, 20, 30 });
(await ta2).Should().Equal(new[] { 10, 20, 30 });
}
[Fact]