From 30e1dc2c742c1872abea08483764431b31ca0210 Mon Sep 17 00:00:00 2001 From: maxonfjvipon Date: Mon, 2 Sep 2024 13:50:08 +0300 Subject: [PATCH] fix(#3356): messages --- .../test/java/EOorg/EOeolang/EOio/InputOutputTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eo-runtime/src/test/java/EOorg/EOeolang/EOio/InputOutputTest.java b/eo-runtime/src/test/java/EOorg/EOeolang/EOio/InputOutputTest.java index 7132df6104..07d2ebefbe 100644 --- a/eo-runtime/src/test/java/EOorg/EOeolang/EOio/InputOutputTest.java +++ b/eo-runtime/src/test/java/EOorg/EOeolang/EOio/InputOutputTest.java @@ -296,7 +296,7 @@ void dataizesConsoleWriteAsTrue() { @Test void writesToConsole(@TempDir final Path temp) throws IOException { - final String msg = "writes to posix console"; + final String msg = "writes to console"; final File file = InputOutputTest.redirectedStdout( temp, () -> new Dataized( @@ -308,7 +308,7 @@ void writesToConsole(@TempDir final Path temp) throws IOException { ).take() ); MatcherAssert.assertThat( - "The 'console.write' should have written to posix console, but it didn't", + "The 'console.write' should have written to console, but it didn't", new String( Files.readAllBytes(Paths.get(file.getAbsolutePath())), StandardCharsets.UTF_8 ), @@ -346,7 +346,7 @@ void writesToConsoleSequentially(@TempDir final Path temp) throws IOException { @Test void readsFromConsole(@TempDir final Path temp) throws IOException { - final String content = "read from posix console"; + final String content = "read from console"; final byte[] result = InputOutputTest.redirectedStdin( temp, content, @@ -368,7 +368,7 @@ void readsFromConsole(@TempDir final Path temp) throws IOException { @Test void readsSequentiallyFromInputBlockViaConsole(@TempDir final Path temp) throws IOException { - final String content = "read sequentially from posix console"; + final String content = "read sequentially from console"; final byte[] result = InputOutputTest.redirectedStdin( temp, content,