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

@@ -23,7 +23,7 @@ namespace NetCoreTests.Linq
l.Add(x);
});
l.Should().BeEquivalentTo(100, 110, 120, 130, 140, 150, 160, 170, 180, 190);
l.Should().Equal(100, 110, 120, 130, 140, 150, 160, 170, 180, 190);
}
}
}