Skip to content

Commit 29f6546

Browse files
committed
Refactor test case of LoopRunnerTest
1 parent b6bd618 commit 29f6546

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/java/LoopRunnerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88
public class LoopRunnerTest {
99
@Test
10-
public void test_run_should_with_range_time() {
11-
assertThat(LoopRunner.run(1, 4)).isEqualTo("12Fizz");
10+
public void test_run_should_return_12_between_1_and_3() {
11+
assertThat(LoopRunner.run(1, 3)).isEqualTo("12");
1212
}
1313
}

0 commit comments

Comments
 (0)