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>2014-08-26 11:57:35 +0400
committernulltoken <emeric.fermas@gmail.com>2014-08-27 21:38:50 +0400
commit520b1aa54c41c80e1c7eebcbaa565e42e62f13be (patch)
treefaec0c690d97c63ad473b6acc9b1a55dc569e5df /LibGit2Sharp.Tests
parent74685261d364b2d40521668dcdb0d679c8659247 (diff)
Remove trailing whitespaces
Diffstat (limited to 'LibGit2Sharp.Tests')
-rw-r--r--LibGit2Sharp.Tests/MergeFixture.cs2
-rw-r--r--LibGit2Sharp.Tests/ObjectDatabaseFixture.cs2
-rw-r--r--LibGit2Sharp.Tests/OdbBackendFixture.cs4
-rw-r--r--LibGit2Sharp.Tests/RepositoryFixture.cs2
-rw-r--r--LibGit2Sharp.Tests/TagFixture.cs2
5 files changed, 6 insertions, 6 deletions
diff --git a/LibGit2Sharp.Tests/MergeFixture.cs b/LibGit2Sharp.Tests/MergeFixture.cs
index 8c480d8a..7801de71 100644
--- a/LibGit2Sharp.Tests/MergeFixture.cs
+++ b/LibGit2Sharp.Tests/MergeFixture.cs
@@ -351,7 +351,7 @@ namespace LibGit2Sharp.Tests
using (var repo = new Repository(repoPath))
{
Commit commitToMerge = repo.Branches["normal_merge"].Tip;
-
+
bool wasCalled = false;
MergeOptions options = new MergeOptions()
diff --git a/LibGit2Sharp.Tests/ObjectDatabaseFixture.cs b/LibGit2Sharp.Tests/ObjectDatabaseFixture.cs
index 091876d8..c6e724c1 100644
--- a/LibGit2Sharp.Tests/ObjectDatabaseFixture.cs
+++ b/LibGit2Sharp.Tests/ObjectDatabaseFixture.cs
@@ -563,7 +563,7 @@ namespace LibGit2Sharp.Tests
/*
* $ echo "aabqhq" | git hash-object -t blob --stdin
* dea509d0b3cb8ee0650f6ca210bc83f4678851ba
- *
+ *
* $ echo "aaazvc" | git hash-object -t blob --stdin
* dea509d097ce692e167dfc6a48a7a280cc5e877e
*/
diff --git a/LibGit2Sharp.Tests/OdbBackendFixture.cs b/LibGit2Sharp.Tests/OdbBackendFixture.cs
index 9df69b08..c99442c9 100644
--- a/LibGit2Sharp.Tests/OdbBackendFixture.cs
+++ b/LibGit2Sharp.Tests/OdbBackendFixture.cs
@@ -183,7 +183,7 @@ namespace LibGit2Sharp.Tests
/*
* $ echo "aabqhq" | git hash-object -t blob --stdin
* dea509d0b3cb8ee0650f6ca210bc83f4678851ba
- *
+ *
* $ echo "aaazvc" | git hash-object -t blob --stdin
* dea509d097ce692e167dfc6a48a7a280cc5e877e
*/
@@ -386,7 +386,7 @@ namespace LibGit2Sharp.Tests
public override int ExistsPrefix(string shortSha, out ObjectId found)
{
- found = null;
+ found = null;
int numFound = 0;
foreach (ObjectId id in m_objectIdToContent.Keys)
diff --git a/LibGit2Sharp.Tests/RepositoryFixture.cs b/LibGit2Sharp.Tests/RepositoryFixture.cs
index f5916f5f..7f4d208a 100644
--- a/LibGit2Sharp.Tests/RepositoryFixture.cs
+++ b/LibGit2Sharp.Tests/RepositoryFixture.cs
@@ -110,7 +110,7 @@ namespace LibGit2Sharp.Tests
Assert.True(regexResult.Success, "The following version string format is enforced:" +
"Major.Minor.Patch-LibGit2Sharp_abbrev_hash-libgit2_abbrev_hash (x86|amd64 - features)");
-
+
GroupCollection matchGroups = regexResult.Groups;
// Check that all groups are valid
diff --git a/LibGit2Sharp.Tests/TagFixture.cs b/LibGit2Sharp.Tests/TagFixture.cs
index 6426ccb1..bd008af3 100644
--- a/LibGit2Sharp.Tests/TagFixture.cs
+++ b/LibGit2Sharp.Tests/TagFixture.cs
@@ -385,7 +385,7 @@ namespace LibGit2Sharp.Tests
Tree tree = repo.Lookup<Tree>("581f9824ecaf824221bd36edf5430f2739a7c4f5");
Assert.NotNull(tree);
-
+
Assert.Equal(tree.Id, tag.Target.Id);
}
}