Browse Source

Fix Sentry tests.

pull/690/head
Chris Smith 8 years ago
parent
commit
5650e15320
1 changed files with 7 additions and 7 deletions
  1. 7
    7
      test/com/dmdirc/logger/SentryErrorReporterTest.java

+ 7
- 7
test/com/dmdirc/logger/SentryErrorReporterTest.java View File

@@ -38,12 +38,12 @@ import org.mockito.Matchers;
38 38
 import org.mockito.Mock;
39 39
 import org.mockito.runners.MockitoJUnitRunner;
40 40
 
41
-import net.kencochrane.raven.Raven;
42
-import net.kencochrane.raven.RavenFactory;
43
-import net.kencochrane.raven.dsn.Dsn;
44
-import net.kencochrane.raven.event.Event;
45
-import net.kencochrane.raven.event.interfaces.ExceptionInterface;
46
-import net.kencochrane.raven.event.interfaces.SentryInterface;
41
+import com.getsentry.raven.Raven;
42
+import com.getsentry.raven.RavenFactory;
43
+import com.getsentry.raven.dsn.Dsn;
44
+import com.getsentry.raven.event.Event;
45
+import com.getsentry.raven.event.interfaces.ExceptionInterface;
46
+import com.getsentry.raven.event.interfaces.SentryInterface;
47 47
 
48 48
 import static org.junit.Assert.assertEquals;
49 49
 import static org.junit.Assert.assertNotNull;
@@ -146,4 +146,4 @@ public class SentryErrorReporterTest {
146 146
                 ((ExceptionInterface) iface).getExceptions().getFirst().getExceptionMessage());
147 147
     }
148 148
 
149
-}
149
+}

Loading…
Cancel
Save