mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-12 22:35:43 +00:00
Merge branch 'release/4.0.0' into feature/generic_math
This commit is contained in:
commit
cc94905930
@ -175,9 +175,9 @@ internal class ListTests
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void RemoveRange_ShouldThrowArgumentException_GivenEndIndexLessThanStart()
|
||||
public void RemoveRange_ShouldThrowArgumentOutOfRangeException_GivenEndIndexLessThanStart()
|
||||
{
|
||||
Assert.Throws<ArgumentException>(() => new List<int>().RemoveRange(2..0));
|
||||
Assert.Throws<ArgumentOutOfRangeException>(() => new List<int>().RemoveRange(2..0));
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
Loading…
Reference in New Issue
Block a user