Bump odlparent to 7.0.1
[odlguice.git] / inject-guice-testutils / src / test / java / org / opendaylight / infrautils / inject / guice / testutils / tests / ExampleGuiceRuleTest.java
index 259d53e7060a28685995ce504e7e44deba5c312c..1c7efa089cf225a45e7fa8f1593e2d8f169ddb1b 100644 (file)
@@ -7,7 +7,7 @@
  */
 package org.opendaylight.infrautils.inject.guice.testutils.tests;
 
-import static com.google.common.truth.Truth.assertThat;
+import static org.junit.Assert.assertTrue;
 
 import javax.inject.Inject;
 import org.junit.Rule;
@@ -25,8 +25,9 @@ public class ExampleGuiceRuleTest {
 
     @Inject SomeInterfaceWithPostConstruct someService;
 
-    @Test public void testGuiceWithRule() {
-        assertThat(someService.isInit()).named("isInit()").isTrue();
+    @Test
+    public void testGuiceWithRule() {
+        assertTrue(someService.isInit());
     }
 
     public static class TestModule extends AbstractGuiceJsr250Module {