Skip to content

Commit

Permalink
fix checkstyles
Browse files Browse the repository at this point in the history
  • Loading branch information
XenoAmess committed Aug 25, 2020
1 parent 4c2aa76 commit 0fd1da5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -787,6 +787,6 @@ void testNumbers150() {

// shall overflow
Assertions.assertThrows(ArithmeticException.class, () -> BigFraction.of(2).pow(Integer.MIN_VALUE));
Assertions.assertThrows(ArithmeticException.class, () -> BigFraction.of(1 , 2).pow(Integer.MIN_VALUE));
Assertions.assertThrows(ArithmeticException.class, () -> BigFraction.of(1, 2).pow(Integer.MIN_VALUE));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ void testNumbers150() {

// shall overflow
Assertions.assertThrows(ArithmeticException.class, () -> Fraction.of(2).pow(Integer.MIN_VALUE));
Assertions.assertThrows(ArithmeticException.class, () -> Fraction.of(1 , 2).pow(Integer.MIN_VALUE));
Assertions.assertThrows(ArithmeticException.class, () -> Fraction.of(1, 2).pow(Integer.MIN_VALUE));
}

/**
Expand Down

0 comments on commit 0fd1da5

Please sign in to comment.