Skip to content

Commit

Permalink
#2973: Enabled test
Browse files Browse the repository at this point in the history
  • Loading branch information
levBagryansky committed Mar 25, 2024
1 parent 7311c40 commit 4c1dd7c
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,13 @@
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;

/**
* 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
Expand Down Expand Up @@ -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";
Expand Down

1 comment on commit 4c1dd7c

@0pdd
Copy link

@0pdd 0pdd commented on 4c1dd7c Mar 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 2931-acb35140 disappeared from eo-runtime/src/test/java/EOorg/EOeolang/EOio/EOstdoutTest.java), that's why I closed #2976. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

Please sign in to comment.