Skip to content

Commit 58932d0

Browse files
committed
Fix wrong test
1 parent 6301a50 commit 58932d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibGit2Sharp.Tests/ReferenceFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public void BlindlyCreatingASymbolicReferenceOverAnExistingOneThrows()
6868
TemporaryCloneOfTestRepo path = BuildTemporaryCloneOfTestRepo();
6969
using (var repo = new Repository(path.RepositoryPath))
7070
{
71-
Assert.Throws<LibGit2SharpException>(() => repo.Refs.Add("HEAD", "refs/head/br2"));
71+
Assert.Throws<LibGit2SharpException>(() => repo.Refs.Add("HEAD", "refs/heads/br2"));
7272
}
7373
}
7474

0 commit comments

Comments
 (0)