Skip to content

Commit 2bf2a35

Browse files
authored
Update DefaultNumericAxisTests.java, remove throws Exception
- Remove throws exception for quality gate
1 parent 9cfa75b commit 2bf2a35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chartfx-chart/src/test/java/io/fair_acc/chartfx/axes/spi/DefaultNumericAxisTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public void parameterTests() {
9898

9999
@ParameterizedTest
100100
@MethodSource("testAxisLabelTextProvider")
101-
void testAxisLabelText(String expected, String name, String unit, double unitScaling) throws Exception {
101+
void testAxisLabelText(String expected, String name, String unit, double unitScaling) {
102102
final DefaultNumericAxis axis = new DefaultNumericAxis(name, unit);
103103
axis.setUnitScaling(unitScaling);
104104
assertEquals(expected, axis.generateAxisLabelText());

0 commit comments

Comments
 (0)