Skip to content

Commit

Permalink
fix: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Dec 24, 2023
1 parent f342793 commit 5291a00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ object CodeDataStructUtil {
if (endLineContent.isBlank()) {
0
} else {
endLineContent.length + 1
endLineContent.length
}
} else {
position.StopLinePosition
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import chapi.ast.javaast.JavaAnalyser
import chapi.domain.core.CodeDataStruct
import chapi.domain.core.CodeField
import chapi.domain.core.CodeFunction
import org.junit.jupiter.api.Assertions
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Test

Expand Down Expand Up @@ -40,7 +39,7 @@ class CodeDataStructUtilTest {
|//
""".trimMargin()

Assertions.assertEquals(expectedUml, uml)
assertEquals(expectedUml, uml)
}

@Test
Expand Down

0 comments on commit 5291a00

Please sign in to comment.