Skip to content

Commit

Permalink
Remove hardcoded seed in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xgouchet committed Apr 4, 2024
1 parent e5383b7 commit 3187e7c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import org.mockito.quality.Strictness
ExtendWith(ApiLevelExtension::class)
)
@MockitoSettings(strictness = Strictness.LENIENT)
@ForgeConfiguration(value = ForgeConfigurator::class, seed = 0x3f3a03ceae05aL)
@ForgeConfiguration(value = ForgeConfigurator::class)
open class AndroidMDrawableToColorMapperTest : LegacyDrawableToColorMapperTest() {

override fun createTestedMapper(): DrawableToColorMapper {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import org.mockito.quality.Strictness
ExtendWith(ApiLevelExtension::class)
)
@MockitoSettings(strictness = Strictness.LENIENT)
@ForgeConfiguration(value = ForgeConfigurator::class, seed = 0x3f3a03ceae05aL)
@ForgeConfiguration(value = ForgeConfigurator::class)
class AndroidQDrawableToColorMapperTest : AndroidMDrawableToColorMapperTest() {

override fun createTestedMapper(): DrawableToColorMapper {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import org.mockito.quality.Strictness
ExtendWith(ForgeExtension::class)
)
@MockitoSettings(strictness = Strictness.LENIENT)
@ForgeConfiguration(value = ForgeConfigurator::class, seed = 0x3f3a03ceae05aL)
@ForgeConfiguration(value = ForgeConfigurator::class)
open class LegacyDrawableToColorMapperTest {

lateinit var testedMapper: DrawableToColorMapper
Expand Down

0 comments on commit 3187e7c

Please sign in to comment.