Skip to content

Commit

Permalink
sonar fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MichiBaum committed Oct 9, 2024
1 parent 1f9cc93 commit a3fab13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class PersonRepositoryIT {
assertNotEquals(playerWithAccount.id, result.id)

assertEquals(1, result.accounts.size)
assertEquals(savedAccount.id, result.accounts[0].id)
assertEquals(savedAccount.id, result.accounts.get(0).id)
}

}
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>
--illegal-access=permit
@{argLine} --illegal-access=permit
</argLine>
<testSourceDirectory>
${project.basedir}/src/test/kotlin
Expand All @@ -312,7 +312,7 @@
</executions>
<configuration>
<argLine>
--illegal-access=permit
@{argLine} --illegal-access=permit
</argLine>
<testSourceDirectory>
${project.basedir}/src/test/kotlin
Expand Down

0 comments on commit a3fab13

Please sign in to comment.