Skip to content

Commit

Permalink
objectionary#2863 remove duplicated test
Browse files Browse the repository at this point in the history
  • Loading branch information
c71n93 committed Apr 11, 2024
1 parent be129c9 commit 8b58618
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/simian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
- run: |
wget --quiet http://public.yegor256.com/simian.jar -O /tmp/simian.jar
- run: |
java -jar /tmp/simian.jar -threshold=15 -excludes=**/gen -excludes=**/it **/*.java
java -jar /tmp/simian.jar -threshold=14 -excludes=**/gen -excludes=**/it **/*.java
19 changes: 0 additions & 19 deletions eo-runtime/src/test/java/EOorg/EOeolang/EOtryTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,25 +86,6 @@ public void usesCatcherOutput() {
);
}

@Test
public void printsCatcherOutput() {
final Phi body = new PhWith(
new PhWith(
new PhWith(
new EOtry(Phi.Φ),
0, new Broken(Phi.Φ)
),
1, new Catcher(Phi.Φ)
),
2,
new Data.ToPhi(true)
);
MatcherAssert.assertThat(
new Dataized(body).take(String.class),
Matchers.containsString("it is broken")
);
}

@Test
public void worksWithoutException() {
MatcherAssert.assertThat(
Expand Down

0 comments on commit 8b58618

Please sign in to comment.