aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tst
diff options
context:
space:
mode:
authorYuxuan 'fishy' Wang <fishywang@google.com>2015-05-25 11:41:24 -0700
committerYuxuan 'fishy' Wang <fishywang@google.com>2015-05-26 09:58:38 -0700
commit744c370c1be8044d1ccaaf84cd164324961fea1a (patch)
tree275ea5f9f86e2595c623f72d77b1eb56161166ec /org.eclipse.jgit.test/tst
parent1773002a3446c93ab03997b65139fc7d014599b9 (diff)
downloadjgit-744c370c1be8044d1ccaaf84cd164324961fea1a.tar.gz
jgit-744c370c1be8044d1ccaaf84cd164324961fea1a.zip
Add getters to RepoProject.
Change-Id: I74ded6c2c3f5985568cd77bd8799b45017fb1d09 Signed-off-by: Yuxuan 'fishy' Wang <fishywang@google.com>
Diffstat (limited to 'org.eclipse.jgit.test/tst')
-rw-r--r--org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/ManifestParserTest.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/ManifestParserTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/ManifestParserTest.java
index 1005b39ec6..5ed4268eb8 100644
--- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/ManifestParserTest.java
+++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/gitrepo/ManifestParserTest.java
@@ -87,9 +87,9 @@ public class ManifestParserTest {
for (RepoProject proj : parser.getProjects()) {
String msg = String.format(
"project \"%s\" should be included in unfiltered projects",
- proj.path);
- assertTrue(msg, results.contains(proj.path));
- results.remove(proj.path);
+ proj.getPath());
+ assertTrue(msg, results.contains(proj.getPath()));
+ results.remove(proj.getPath());
}
assertTrue(
"Unfiltered projects shouldn't contain any unexpected results",
@@ -101,9 +101,9 @@ public class ManifestParserTest {
for (RepoProject proj : parser.getFilteredProjects()) {
String msg = String.format(
"project \"%s\" should be included in filtered projects",
- proj.path);
- assertTrue(msg, results.contains(proj.path));
- results.remove(proj.path);
+ proj.getPath());
+ assertTrue(msg, results.contains(proj.getPath()));
+ results.remove(proj.getPath());
}
assertTrue(
"Filtered projects shouldn't contain any unexpected results",