mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 01:15:14 +01:00
Fix tests failing after upgrading EventBus
This commit is contained in:
parent
872af276ea
commit
e50c683159
@ -40,12 +40,16 @@ public class App extends Application {
|
||||
componentInjector =
|
||||
new ComponentReflectionInjector<>(AppComponent.class, applicationComponent);
|
||||
|
||||
setupEventBus();
|
||||
|
||||
ACRA.init(this);
|
||||
}
|
||||
|
||||
protected void setupEventBus() {
|
||||
EventBus.builder()
|
||||
.addIndex(new EventBusIndex())
|
||||
.logNoSubscriberMessages(false)
|
||||
.installDefaultEventBus();
|
||||
|
||||
ACRA.init(this);
|
||||
}
|
||||
|
||||
public AppComponent getComponent() {
|
||||
|
9
app/src/test/java/eu/kanade/tachiyomi/TestApp.java
Normal file
9
app/src/test/java/eu/kanade/tachiyomi/TestApp.java
Normal file
@ -0,0 +1,9 @@
|
||||
package eu.kanade.tachiyomi;
|
||||
|
||||
public class TestApp extends App {
|
||||
|
||||
@Override
|
||||
protected void setupEventBus() {
|
||||
// Do nothing
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user