Skip to content

Commit aaa1914

Browse files
checkstyle fix
1 parent 6326c43 commit aaa1914

File tree

1 file changed

+2
-2
lines changed
  • core/esmf-aspect-meta-model-java/src/test/java/org/eclipse/esmf/aspectmodel/resolver/fs

1 file changed

+2
-2
lines changed

core/esmf-aspect-meta-model-java/src/test/java/org/eclipse/esmf/aspectmodel/resolver/fs/ModelsRootTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ void resolveByCanonicalPathShouldReturnEmptyFileWhenCanonicalPathDoesNotMatch()
5959

6060
@Test
6161
void resolveByCanonicalPathShouldReturnEmptyFileWhenIoExceptionOccurs() throws Exception {
62-
Path pathCausingIOException = Paths.get( "pathCausingIOException" );
62+
Path pathCausingIoException = Paths.get( "pathCausingIoException" );
6363

64-
File result = invokeResolveByCanonicalPath( pathCausingIOException );
64+
File result = invokeResolveByCanonicalPath( pathCausingIoException );
6565

6666
assertThat( result ).isEqualTo( EMPTY_FILE );
6767
}

0 commit comments

Comments
 (0)