Skip to content

Commit

Permalink
Minor test updates
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelWilcox committed Aug 31, 2023
1 parent 93026e9 commit 9c66cfe
Showing 1 changed file with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,12 +368,9 @@ class ContributesMultibindingGeneratorTest(
package com.squareup.test
import com.squareup.anvil.annotations.ContributesMultibinding
import dagger.MapKey
import javax.inject.Singleton
@ContributesMultibinding(Any::class)
@BindingKey("abc")
@Singleton
@ContributesMultibinding(scope = Any::class)
@BindingKey(value = "abc")
interface ContributingInterface : ParentInterface
""".trimIndent()

Expand Down Expand Up @@ -408,7 +405,7 @@ class ContributesMultibindingGeneratorTest(
interface ParentInterface
@MergeComponent(Any::class)
@MergeComponent(scope = Any::class)
interface ComponentInterface
""",
mode = localMode
Expand Down

0 comments on commit 9c66cfe

Please sign in to comment.