File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/test/java/com/fishercoder/firstthousand Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 11package com .fishercoder .firstthousand ;
22
3- import static org .junit .jupiter .api .Assertions .assertEquals ;
3+ import static org .junit .jupiter .api .Assertions .assertFalse ;
4+ import static org .junit .jupiter .api .Assertions .assertTrue ;
45
56import com .fishercoder .solutions .firstthousand ._796 ;
67import org .junit .jupiter .api .BeforeEach ;
@@ -16,11 +17,11 @@ public void setUp() {
1617
1718 @ Test
1819 public void test1 () {
19- assertEquals ( true , solution1 .rotateString ("abcde" , "cdeab" ));
20+ assertTrue ( solution1 .rotateString ("abcde" , "cdeab" ));
2021 }
2122
2223 @ Test
2324 public void test2 () {
24- assertEquals ( false , solution1 .rotateString ("abcde" , "abced" ));
25+ assertFalse ( solution1 .rotateString ("abcde" , "abced" ));
2526 }
2627}
You can’t perform that action at this time.
0 commit comments