We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eb80fa commit 6db3e63Copy full SHA for 6db3e63
src/test/java/org/junit/rules/TemporaryFolderUsageTest.java
@@ -106,7 +106,7 @@ public void newFolderWithPathStartingWithFileSeparatorThrowsIOException()
106
}
107
tempFolder.create();
108
thrown.expect(IOException.class);
109
- thrown.expectMessage("folder path '/temp1' is not a relative path");
+ thrown.expectMessage("folder path '" + fileAtRoot + "' is not a relative path");
110
tempFolder.newFolder(fileAtRoot);
111
112
0 commit comments