Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java')
-rw-r--r--org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java36
1 files changed, 18 insertions, 18 deletions
diff --git a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java
index 7bdee2973..10710fcc0 100644
--- a/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java
+++ b/org.eclipse.mylyn.bugzilla.tests/src/org/eclipse/mylyn/bugzilla/tests/core/BugzillaRepositoryConnectorStandaloneTest.java
@@ -384,15 +384,15 @@ public class BugzillaRepositoryConnectorStandaloneTest extends TestCase {
connector.removeConfiguration(config);
config = new RepositoryConfiguration();
config.setRepositoryUrl(repository.getRepositoryUrl());
- config.addPriority("MostHighest");
- config.addPriority("Highest");
- config.addPriority("Higher");
- config.addPriority("High");
- config.addPriority("Normal");
- config.addPriority("Low");
- config.addPriority("Lower");
- config.addPriority("Lowest");
- config.addPriority("MostLowest");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "MostHighest");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Highest");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Higher");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "High");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Normal");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Low");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Lower");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Lowest");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "MostLowest");
connector.addRepositoryConfiguration(config);
taskData.getRoot().createMappedAttribute(BugzillaAttribute.PRIORITY.getKey()).setValue("P1");
@@ -448,15 +448,15 @@ public class BugzillaRepositoryConnectorStandaloneTest extends TestCase {
connector.removeConfiguration(config);
config = new RepositoryConfiguration();
config.setRepositoryUrl(repository.getRepositoryUrl());
- config.addPriority("MostHighest");
- config.addPriority("Highest");
- config.addPriority("Higher");
- config.addPriority("High");
- config.addPriority("Normal");
- config.addPriority("Low");
- config.addPriority("Lower");
- config.addPriority("Lowest");
- config.addPriority("MostLowest");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "MostHighest");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Highest");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Higher");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "High");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Normal");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Low");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Lower");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "Lowest");
+ config.addItem2Configuration(BugzillaAttribute.PRIORITY, "MostLowest");
taskData.getRoot().createMappedAttribute(BugzillaAttribute.PRIORITY.getKey()).setValue("P1");
assertEquals(PriorityLevel.P1, mapping.getPriorityLevel());

Back to the top