File tree 2 files changed +6
-6
lines changed
main/java/com/fishercoder/solutions/firstthousand
test/java/com/fishercoder/firstthousand
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ private String process(String str) {
19
19
sb .append (str .charAt (i ));
20
20
}
21
21
}
22
- return sb .reverse (). toString ();
22
+ return sb .toString ();
23
23
}
24
24
}
25
25
}
Original file line number Diff line number Diff line change 1
1
package com .fishercoder .firstthousand ;
2
2
3
3
import com .fishercoder .solutions .firstthousand ._844 ;
4
- import org .junit .BeforeClass ;
5
- import org .junit .Test ;
4
+ import org .junit .jupiter . api . BeforeEach ;
5
+ import org .junit .jupiter . api . Test ;
6
6
7
- import static org .junit .Assert .assertEquals ;
7
+ import static org .junit .jupiter . api . Assertions .assertEquals ;
8
8
9
9
public class _844Test {
10
10
private static _844 .Solution1 solution1 ;
11
11
12
- @ BeforeClass
13
- public static void setup () {
12
+ @ BeforeEach
13
+ public void setup () {
14
14
solution1 = new _844 .Solution1 ();
15
15
}
16
16
You can’t perform that action at this time.
0 commit comments