Skip to content

Commit

Permalink
#2750 change logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
c71n93 committed Jan 11, 2024
1 parent 43b1897 commit 733cfa5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions eo-parser/src/test/java/org/eolang/parser/XMIRTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ final class XMIRTest {
@ParameterizedTest
@ClasspathSource(value = "org/eolang/parser/xmir-samples/", glob = "**.eo")
void printsToEO(final String src) throws Exception {
Logger.warnForced(this, "Original EOLANG:%n%s", src);
Logger.debug(this, "Original EOLANG:%n%s", src);
final XML first = XMIRTest.clean(XMIRTest.parse(src));
Logger.warnForced(this, "First:%n%s", first);
Logger.debug(this, "First:%n%s", first);
final String eolang = new XMIR(first).toEO();
Logger.warnForced(this, "EOLANG:%n%s", eolang);
Logger.debug(this, "EOLANG:%n%s", eolang);
final XML second = XMIRTest.clean(XMIRTest.parse(eolang));
Logger.warnForced(this, "Second:%n%s", second);
Logger.debug(this, "Second:%n%s", second);
final String ignore = "data=\"\\S+\"";
MatcherAssert.assertThat(
first
Expand Down

0 comments on commit 733cfa5

Please sign in to comment.