Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.ui.test/src')
-rw-r--r--org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/team/actions/TagActionTest.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/team/actions/TagActionTest.java b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/team/actions/TagActionTest.java
index 28f7de1935..fce9cb21a7 100644
--- a/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/team/actions/TagActionTest.java
+++ b/org.eclipse.egit.ui.test/src/org/eclipse/egit/ui/test/team/actions/TagActionTest.java
@@ -15,7 +15,7 @@ package org.eclipse.egit.ui.test.team.actions;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.assertNotNull;
import java.io.File;
@@ -86,8 +86,8 @@ public class TagActionTest extends LocalRepositoryTestCase {
.setText("Here's the message text");
tagDialog.bot().button(UIText.CreateTagDialog_CreateTagButton).click();
waitInUI();
- assertTrue(lookupRepository(repositoryFile).getTags().keySet()
- .contains("AnotherTag"));
+ assertNotNull(lookupRepository(repositoryFile)
+ .exactRef(Constants.R_TAGS + "AnotherTag"));
}
@Test
@@ -136,8 +136,8 @@ public class TagActionTest extends LocalRepositoryTestCase {
.setText("Here's the first message");
tagDialog.bot().button(UIText.CreateTagDialog_CreateTagButton).click();
waitInUI();
- assertTrue(lookupRepository(repositoryFile).getTags().keySet()
- .contains("MessageChangeTag"));
+ assertNotNull(lookupRepository(repositoryFile)
+ .exactRef(Constants.R_TAGS + "MessageChangeTag"));
tagDialog = openTagDialog();
tagDialog.bot().tableWithLabel(UIText.CreateTagDialog_existingTags)
.getTableItem("MessageChangeTag").select();

Back to the top