Skip to content

Commit

Permalink
feat(#2682): messages
Browse files Browse the repository at this point in the history
  • Loading branch information
maxonfjvipon committed Dec 7, 2023
1 parent 18a4b56 commit a0c2729
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,12 @@ void convertsToXmirAndBack(final String pack, @TempDir final Path temp) throws E
.result()
.get(main);
MatcherAssert.assertThat(
String.format("%s should have been rewritten after optimization, but it wasn't", main),
result.toFile().lastModified(),
Matchers.greaterThan(saved)
);
MatcherAssert.assertThat(
"Origin phi should equal to phi got from \"unphied\" xmir, but it isn't",
phi,
Matchers.equalTo(
new TextOf(result).asString()
Expand Down

1 comment on commit a0c2729

@0pdd
Copy link

@0pdd 0pdd commented on a0c2729 Dec 7, 2023

Choose a reason for hiding this comment

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

Puzzle 2642-02dbe2cd disappeared from eo-maven-plugin/src/test/java/org/eolang/maven/UnphiMojoTest.java), that's why I closed #2682. 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.