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:
authornulltoken <emeric.fermas@gmail.com>2013-11-28 18:12:19 +0400
committernulltoken <emeric.fermas@gmail.com>2013-12-06 03:53:23 +0400
commit442f7a80502ed919d94891400f7766b8415f106d (patch)
tree18a144e95eb9dbcc9baf0e0ed2c2712402e9cb87 /LibGit2Sharp.Tests
parentf5d9d0ee2803b408ad850ea72c75484876a8c871 (diff)
Remove trailing whitespaces
Diffstat (limited to 'LibGit2Sharp.Tests')
-rw-r--r--LibGit2Sharp.Tests/BlameFixture.cs2
-rw-r--r--LibGit2Sharp.Tests/DiffTreeToTreeFixture.cs2
-rw-r--r--LibGit2Sharp.Tests/TreeFixture.cs4
3 files changed, 4 insertions, 4 deletions
diff --git a/LibGit2Sharp.Tests/BlameFixture.cs b/LibGit2Sharp.Tests/BlameFixture.cs
index c9c7fab6..b0fcf77f 100644
--- a/LibGit2Sharp.Tests/BlameFixture.cs
+++ b/LibGit2Sharp.Tests/BlameFixture.cs
@@ -75,7 +75,7 @@ namespace LibGit2Sharp.Tests
// (be3563a comes after 9fd738e8)
var blame = repo.Blame("new.txt", new BlameOptions {StoppingAt = "be3563a"});
Assert.True(blame[0].FinalCommit.Sha.StartsWith("be3563a"));
- }
+ }
}
}
}
diff --git a/LibGit2Sharp.Tests/DiffTreeToTreeFixture.cs b/LibGit2Sharp.Tests/DiffTreeToTreeFixture.cs
index 04d58461..5ced715e 100644
--- a/LibGit2Sharp.Tests/DiffTreeToTreeFixture.cs
+++ b/LibGit2Sharp.Tests/DiffTreeToTreeFixture.cs
@@ -615,7 +615,7 @@ namespace LibGit2Sharp.Tests
Assert.Equal(2, changes.Count());
Assert.Equal(1, changes.Unmodified.Count());
Assert.Equal(1, changes.Modified.Count());
- }
+ }
}
[Fact]
diff --git a/LibGit2Sharp.Tests/TreeFixture.cs b/LibGit2Sharp.Tests/TreeFixture.cs
index 679345f5..ced6f278 100644
--- a/LibGit2Sharp.Tests/TreeFixture.cs
+++ b/LibGit2Sharp.Tests/TreeFixture.cs
@@ -216,9 +216,9 @@ namespace LibGit2Sharp.Tests
Tree t = repo.ObjectDatabase.CreateTree(td);
var te = t["A symlink"];
-
+
Assert.NotNull(te);
-
+
Assert.Equal(Mode.SymbolicLink, te.Mode);
Assert.Equal(linkContent, te.Target);
}