Skip to content

Commit c9122a4

Browse files
committed
[test] Remove unnecessary final
1 parent 2b010cf commit c9122a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/mybatis/spring/sample/SampleSqlSessionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class SampleSqlSessionTest {
3636
private BarService barService;
3737

3838
@Test
39-
final void testFooService() {
39+
void testFooService() {
4040
User user = this.barService.doSomeBusinessStuff("u1");
4141
assertThat(user).isNotNull();
4242
assertThat(user.getName()).isEqualTo("Pocoyo");

0 commit comments

Comments
 (0)