Skip to content

Commit 2b55e62

Browse files
committed
fix: modified the expected value of printStackTrace in windows (4)
1 parent ea07f16 commit 2b55e62

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/com/github/sttk/errs/ExcTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ void printStackTrace() {
227227
var isWindows = System.getProperty("os.name").toLowerCase().startsWith("windows");
228228
var prefix = "com.github.sttk.errs.RuntimeExc: " + exc.toString();
229229
if (isWindows) {
230-
prefix += System.lineSeparator() + " ";
230+
prefix += System.lineSeparator();
231231
} else {
232232
prefix += System.lineSeparator();
233233
}

0 commit comments

Comments
 (0)