Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrbrooks2010-11-05 21:44:37 +0000
committerRyan D. Brooks2010-11-05 21:44:37 +0000
commit72f92e33e69f583628a45886246d1a37c18af5dc (patch)
tree11a3c0d67969a2f7e077291e549a5aefcf806f62 /plugins/org.eclipse.osee.framework.core.test
parent49e95088ac25b2202dc31edf4635e8541a797df4 (diff)
downloadorg.eclipse.osee-72f92e33e69f583628a45886246d1a37c18af5dc.tar.gz
org.eclipse.osee-72f92e33e69f583628a45886246d1a37c18af5dc.tar.xz
org.eclipse.osee-72f92e33e69f583628a45886246d1a37c18af5dc.zip
refinement: Fix previous change to ServiceBinderFactoryTest
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core.test')
-rw-r--r--plugins/org.eclipse.osee.framework.core.test/src/org/eclipse/osee/framework/core/test/internal/ServiceBinderFactoryTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.core.test/src/org/eclipse/osee/framework/core/test/internal/ServiceBinderFactoryTest.java b/plugins/org.eclipse.osee.framework.core.test/src/org/eclipse/osee/framework/core/test/internal/ServiceBinderFactoryTest.java
index 8fdf92cb73b..6d0d08c528f 100644
--- a/plugins/org.eclipse.osee.framework.core.test/src/org/eclipse/osee/framework/core/test/internal/ServiceBinderFactoryTest.java
+++ b/plugins/org.eclipse.osee.framework.core.test/src/org/eclipse/osee/framework/core/test/internal/ServiceBinderFactoryTest.java
@@ -64,7 +64,7 @@ public class ServiceBinderFactoryTest {
factory.createTracker(null, String.class);
}
- @Test(expected = OseeStateException.class)
+ @Test(expected = IllegalStateException.class)
public void testCreateSingletonBinderTracker() throws OseeCoreException {
ServiceTracker tracker = factory.createTracker(ServiceBindType.SINGLETON, String.class);
Assert.assertNotNull(tracker);

Back to the top