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>2012-05-16 02:00:55 +0400
committernulltoken <emeric.fermas@gmail.com>2012-05-16 02:00:55 +0400
commit6bf14afe223468e11c9630510e88f8c70678ab3f (patch)
tree9636116e1fa29d76ad92f362dfc612a38572bbc2
parent84c16528d57db4c8fc24e60262a1c89ed5e634dc (diff)
Cleanup whitespaces
-rw-r--r--LibGit2Sharp.Tests/AttributesFixture.cs4
-rw-r--r--LibGit2Sharp.Tests/CommitFixture.cs4
2 files changed, 4 insertions, 4 deletions
diff --git a/LibGit2Sharp.Tests/AttributesFixture.cs b/LibGit2Sharp.Tests/AttributesFixture.cs
index 438e2b62..8f10d7c2 100644
--- a/LibGit2Sharp.Tests/AttributesFixture.cs
+++ b/LibGit2Sharp.Tests/AttributesFixture.cs
@@ -48,12 +48,12 @@ namespace LibGit2Sharp.Tests
{
const string relativePath = ".gitattributes";
string fullFilePath = Path.Combine(repo.Info.WorkingDirectory, relativePath);
-
+
var sb = new StringBuilder();
sb.Append("* text=auto\n");
sb.Append("*.txt text\n");
sb.Append("*.data binary\n");
-
+
File.WriteAllText(fullFilePath, sb.ToString());
}
}
diff --git a/LibGit2Sharp.Tests/CommitFixture.cs b/LibGit2Sharp.Tests/CommitFixture.cs
index b7d10526..76db4246 100644
--- a/LibGit2Sharp.Tests/CommitFixture.cs
+++ b/LibGit2Sharp.Tests/CommitFixture.cs
@@ -661,7 +661,7 @@ namespace LibGit2Sharp.Tests
var filter = new Filter
{
/* Revwalk from all the refs (git log --all) ... */
- Since = repo.Refs,
+ Since = repo.Refs,
/* ... and stop when the parent is reached */
Until = parentSha
@@ -675,7 +675,7 @@ namespace LibGit2Sharp.Tests
where pId.Sha == parentSha
select c;
- var expectedChildren = new[] { "c47800c7266a2be04c571c04d5a6614691ea99bd",
+ var expectedChildren = new[] { "c47800c7266a2be04c571c04d5a6614691ea99bd",
"4a202b346bb0fb0db7eff3cffeb3c70babbd2045" };
Assert.Equal(expectedChildren, children.Select(c => c.Id.Sha));