Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Hechtl <[email protected]>
  • Loading branch information
stefanhechtltng committed Feb 4, 2022
1 parent e4301fd commit cba6521
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import static com.tngtech.valueprovider.ValueProviderTest.TestEnum.SIX;
import static com.tngtech.valueprovider.ValueProviderTest.TestEnum.TEN;
import static com.tngtech.valueprovider.ValueProviderTest.TestEnum.THREE;
import static com.tngtech.valueprovider.ValueProviderTest.TestEnum.TWELFE;
import static com.tngtech.valueprovider.ValueProviderTest.TestEnum.TWELVE;
import static com.tngtech.valueprovider.ValueProviderTest.TestEnum.TWO;
import static java.time.LocalDateTime.now;
import static java.util.Arrays.stream;
Expand Down Expand Up @@ -481,7 +481,7 @@ void oneOfExcluding_should_return_allowed_values_only() {
assertThat(random.oneOfExcluding(newArrayList("1", "2", "3", "4"), "3", "4")).isIn("1", "2").isNotIn("3", "4");

assertThat(random.oneOfExcluding(ONE, THREE, FIVE, SEVEN, NINE, ELEVEN))
.isIn(TWO, FOUR, SIX, EIGHT, TEN, TWELFE)
.isIn(TWO, FOUR, SIX, EIGHT, TEN, TWELVE)
.isNotIn(ONE, THREE, FIVE, SEVEN, NINE, ELEVEN);
}

Expand Down Expand Up @@ -611,7 +611,7 @@ private ValueProvider withFixedValues(long seed) {
}

enum TestEnum {
ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE, TEN, ELEVEN, TWELFE
ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE, TEN, ELEVEN, TWELVE
}

enum EmptyTestEnum {
Expand Down

0 comments on commit cba6521

Please sign in to comment.