From 4c1dd7ca05a7972ed7e46d45d3bb00ee62d4f6fb Mon Sep 17 00:00:00 2001 From: levBagryansky <28lev11@gmail.com> Date: Mon, 25 Mar 2024 13:05:13 +0300 Subject: [PATCH] #2973: Enabled test --- .../src/test/java/EOorg/EOeolang/EOio/EOstdoutTest.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/eo-runtime/src/test/java/EOorg/EOeolang/EOio/EOstdoutTest.java b/eo-runtime/src/test/java/EOorg/EOeolang/EOio/EOstdoutTest.java index a1db1558a1..600d37832d 100644 --- a/eo-runtime/src/test/java/EOorg/EOeolang/EOio/EOstdoutTest.java +++ b/eo-runtime/src/test/java/EOorg/EOeolang/EOio/EOstdoutTest.java @@ -42,7 +42,6 @@ import org.eolang.Phi; import org.hamcrest.MatcherAssert; import org.hamcrest.Matchers; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.CsvSource; @@ -50,9 +49,6 @@ /** * Test case for {@link EOstdout}. * @since 0.1 - * @todo #2931:30min Enable the test {@link EOstdoutTest#doesNotPrintTwiceOnFloatComparisonMethods}. - * The test was disabled after new rho logic was introduced and {@link org.eolang.PhConst} stopped - * working properly. Need to enable the test when it's possible. */ public final class EOstdoutTest { @Test @@ -116,7 +112,6 @@ public void doesNotPrintTwiceOnIntComparisonMethods(final String method) { @ParameterizedTest() @CsvSource({"lt", "gt", "lte", "gte"}) - @Disabled public void doesNotPrintTwiceOnFloatComparisonMethods(final String method) { final ByteArrayOutputStream stream = new ByteArrayOutputStream(); final String str = "Hello world";