Skip to content

Commit

Permalink
service
Browse files Browse the repository at this point in the history
  • Loading branch information
vegaro committed Sep 7, 2023
1 parent f4cdc00 commit 8bc250d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class PurchasesConfigurationTest {
assertThat(purchasesConfiguration.context).isEqualTo(context)
assertThat(purchasesConfiguration.appUserID).isNull()
assertThat(purchasesConfiguration.observerMode).isFalse
assertThat(purchasesConfiguration.backendService).isNull()
assertThat(purchasesConfiguration.service).isNull()
assertThat(purchasesConfiguration.store).isEqualTo(Store.PLAY_STORE)
assertThat(purchasesConfiguration.diagnosticsEnabled).isFalse
assertThat(purchasesConfiguration.verificationMode).isEqualTo(EntitlementVerificationMode.DISABLED)
Expand All @@ -56,7 +56,7 @@ class PurchasesConfigurationTest {
fun `PurchasesConfiguration sets service correctly`() {
val serviceMock: ExecutorService = mockk()
val purchasesConfiguration = builder.service(serviceMock).build()
assertThat(purchasesConfiguration.backendService).isEqualTo(serviceMock)
assertThat(purchasesConfiguration.service).isEqualTo(serviceMock)
}

@Test
Expand Down

0 comments on commit 8bc250d

Please sign in to comment.