Skip to content

Commit c8a6798

Browse files
epeeejoel-costigliola
authored andcommitted
fix a minor typo (#1449)
1 parent 4e32776 commit c8a6798

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/test/java/org/assertj/core/internal/bigdecimals/BigDecimals_assertIsCloseTo_Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public void should_fail_if_difference_is_equal_to_the_given_strict_offset() {
124124
failBecauseExpectedAssertionErrorWasNotThrown();
125125
}
126126

127-
// with comparison stratgey
127+
// with comparison strategy
128128

129129
@Test
130130
public void should_pass_if_difference_is_less_than_given_offset_whatever_custom_comparison_strategy_is() {

src/test/java/org/assertj/core/internal/bigintegers/BigIntegers_assertIsCloseTo_Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ public void should_fail_if_difference_is_equal_to_the_given_strict_offset() {
161161
failBecauseExpectedAssertionErrorWasNotThrown();
162162
}
163163

164-
// with comparison stratgey
164+
// with comparison strategy
165165

166166
@Test
167167
public void should_pass_if_difference_is_less_than_given_offset_whatever_custom_comparison_strategy_is() {

src/test/java/org/assertj/core/internal/doubles/Doubles_assertIsCloseTo_Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public void should_fail_if_actual_is_NEGATIVE_INFINITY_and_expected_is_POSITIVE_
152152
assertThatExceptionOfType(AssertionError.class).isThrownBy(() -> doubles.assertIsCloseTo(someInfo(), NEGATIVE_INFINITY, POSITIVE_INFINITY, within(ONE)));
153153
}
154154

155-
// with comparison stratgey
155+
// with comparison strategy
156156

157157
@Test
158158
public void should_pass_if_difference_is_less_than_given_offset_whatever_custom_comparison_strategy_is() {

src/test/java/org/assertj/core/internal/floats/Floats_assertIsCloseTo_Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public void should_fail_if_actual_is_NEGATIVE_INFINITY_and_expected_is_POSITIVE_
152152
assertThatExceptionOfType(AssertionError.class).isThrownBy(() -> floats.assertIsCloseTo(someInfo(), NEGATIVE_INFINITY, POSITIVE_INFINITY, within(ONE)));
153153
}
154154

155-
// with comparison stratgey
155+
// with comparison strategy
156156

157157
@Test
158158
public void should_pass_if_difference_is_less_than_given_offset_whatever_custom_comparison_strategy_is() {

0 commit comments

Comments
 (0)