diff options
author | Terry Parker <tparker@google.com> | 2016-05-26 18:10:25 -0400 |
---|---|---|
committer | Gerrit Code Review @ Eclipse.org <gerrit@eclipse.org> | 2016-05-26 18:10:26 -0400 |
commit | 0269f074015de65c8ca9b7799660dd8442d5a3c1 (patch) | |
tree | 191148cc1b435fa4c8f671c5d3f95ad472d8121b | |
parent | 063548b9afb516010cc114e33d5df7a09ea042fb (diff) | |
parent | 53a64a0b8c7d841c8d677962947a4c90765274b5 (diff) | |
download | jgit-0269f074015de65c8ca9b7799660dd8442d5a3c1.tar.gz jgit-0269f074015de65c8ca9b7799660dd8442d5a3c1.zip |
Merge "RepoCommandTest: Improve assertion message for remote branch recording"
-rw-r--r-- | org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/RepoCommandTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/RepoCommandTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/RepoCommandTest.java index 2cec34ba89..6e6f4ed57f 100644 --- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/RepoCommandTest.java +++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/RepoCommandTest.java @@ -743,9 +743,9 @@ public class RepoCommandTest extends RepositoryTestCase { FileBasedConfig c = new FileBasedConfig(gitmodules, FS.DETECTED); c.load(); - assertEquals("standard branches work", "master", + assertEquals("Recording remote branches should work for short branch descriptions", "master", c.getString("submodule", "with-branch", "branch")); - assertEquals("long branches work", "refs/heads/master", + assertEquals("Recording remote branches should work for full ref specs", "refs/heads/master", c.getString("submodule", "with-long-branch", "branch")); } } |