Skip to content

Commit

Permalink
Fix backend integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tonidero committed Jul 19, 2023
1 parent 1ad7f42 commit b8d2d13
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ internal abstract class BaseBackendIntegrationTest {
every { forceServerErrors } returns false
every { forceSigningErrors } returns false
}
dispatcher = Dispatcher(Executors.newSingleThreadScheduledExecutor())
diagnosticsDispatcher = Dispatcher(Executors.newSingleThreadScheduledExecutor())
dispatcher = Dispatcher(Executors.newSingleThreadScheduledExecutor(), runningIntegrationTests = true)
diagnosticsDispatcher = Dispatcher(Executors.newSingleThreadScheduledExecutor(), runningIntegrationTests = true)
sharedPreferencesEditor = mockk<SharedPreferences.Editor>().apply {
every { putString(any(), any()) } returns this
every { apply() } just Runs
Expand Down

0 comments on commit b8d2d13

Please sign in to comment.