Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp.Tests/RemoveFixture.cs')
-rw-r--r--LibGit2Sharp.Tests/RemoveFixture.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp.Tests/RemoveFixture.cs b/LibGit2Sharp.Tests/RemoveFixture.cs
index 6dc6507c..04d12fee 100644
--- a/LibGit2Sharp.Tests/RemoveFixture.cs
+++ b/LibGit2Sharp.Tests/RemoveFixture.cs
@@ -180,7 +180,7 @@ namespace LibGit2Sharp.Tests
Assert.Throws<ArgumentException>(() => repo.Index.Remove(string.Empty));
Assert.Throws<ArgumentNullException>(() => repo.Index.Remove((string)null));
Assert.Throws<ArgumentException>(() => repo.Index.Remove(new string[] { }));
- Assert.Throws<ArgumentException>(() => repo.Index.Remove(new string[] { null }));
+ Assert.Throws<ArgumentNullException>(() => repo.Index.Remove(new string[] { null }));
}
}
}