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-04-16 23:46:23 +0400
committernulltoken <emeric.fermas@gmail.com>2012-04-28 05:32:15 +0400
commitbabf77dda5cf70d3d80fd99961e53e085d9a767e (patch)
tree825309921d6b946fad821d6eed5bbb1f2c8cbf65 /LibGit2Sharp.Tests
parent0787252beb87eb9e7a707e6c414c533b9f8bc38f (diff)
Deploy usage of the Mode enum
Diffstat (limited to 'LibGit2Sharp.Tests')
-rwxr-xr-xLibGit2Sharp.Tests/TreeFixture.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/LibGit2Sharp.Tests/TreeFixture.cs b/LibGit2Sharp.Tests/TreeFixture.cs
index eae5c3b7..4b980a85 100755
--- a/LibGit2Sharp.Tests/TreeFixture.cs
+++ b/LibGit2Sharp.Tests/TreeFixture.cs
@@ -120,7 +120,7 @@ namespace LibGit2Sharp.Tests
using (var repo = new Repository(BareTestRepoPath))
{
var tree = repo.Lookup<Tree>(sha);
- tree["README"].Attributes.ShouldEqual(33188);
+ tree["README"].Mode.ShouldEqual(Mode.NonExecutableFile);
}
}