Skip to content

Commit

Permalink
fixup! Test that setting quarkus.hibernate-orm.sql-load-script to the…
Browse files Browse the repository at this point in the history
… absolute path (on the FS) to a resource file fails
  • Loading branch information
yrodiere committed Feb 22, 2022
1 parent eebb8fa commit a99690f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public class AbsoluteFileSystemPathSqlLoadScriptTestCase {
} catch (URISyntaxException e) {
throw new IllegalStateException(e);
}
System.out.println("Absolute filesystem path used for sql-load-script: " + sqlLoadScriptAbsolutePath);
}

@RegisterExtension
Expand All @@ -51,7 +52,7 @@ public class AbsoluteFileSystemPathSqlLoadScriptTestCase {
"Expected a path relative to the root of the path tree"));

@Test
public void testSqlLoadScriptFileAbsentTest() {
public void testSqlLoadScriptAbsolutePath() {
// deployment exception should happen first
Assertions.fail();
}
Expand Down

0 comments on commit a99690f

Please sign in to comment.