Skip to content

Commit

Permalink
#3779 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 29, 2024
1 parent 27266e2 commit fffb531
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -869,7 +869,7 @@ void writesToStdoutViaPosixWriteSyscall(@Mktmp final Path temp) throws IOExcepti
MatcherAssert.assertThat(
"The posix 'write' syscall should have written to standard output, but it didn't",
Files.readString(Paths.get(file.getAbsolutePath()), StandardCharsets.UTF_8),
Matchers.equalTo(msg)
Matchers.containsString(msg)
);
}

Expand Down

0 comments on commit fffb531

Please sign in to comment.