From 4e2a4ed0bc915ec764a3e3002a2ef97455aa5ee7 Mon Sep 17 00:00:00 2001 From: volodya-lombrozo Date: Sun, 7 Jul 2024 17:41:16 +0300 Subject: [PATCH] feat(#627): fix all jtcop suggestions --- .../jeo/representation/directives/DirectivesClassTest.java | 2 +- .../jeo/representation/directives/DirectivesTryCatchTest.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/org/eolang/jeo/representation/directives/DirectivesClassTest.java b/src/test/java/org/eolang/jeo/representation/directives/DirectivesClassTest.java index 1d6675c63..5d2a024a0 100644 --- a/src/test/java/org/eolang/jeo/representation/directives/DirectivesClassTest.java +++ b/src/test/java/org/eolang/jeo/representation/directives/DirectivesClassTest.java @@ -98,7 +98,7 @@ void appendsMethod() { } @Test - void correctlyConvertsToDirectives() throws ImpossibleModificationException { + void convertsToDirectives() throws ImpossibleModificationException { final String name = "Foo"; final int access = 100; final String signature = "java/lang/Object"; diff --git a/src/test/java/org/eolang/jeo/representation/directives/DirectivesTryCatchTest.java b/src/test/java/org/eolang/jeo/representation/directives/DirectivesTryCatchTest.java index 7429a949a..cecc3731a 100644 --- a/src/test/java/org/eolang/jeo/representation/directives/DirectivesTryCatchTest.java +++ b/src/test/java/org/eolang/jeo/representation/directives/DirectivesTryCatchTest.java @@ -43,7 +43,7 @@ final class DirectivesTryCatchTest { @Test - void correctlyConvertsToXmir() throws ImpossibleModificationException { + void convertsToXmir() throws ImpossibleModificationException { final Label start = new Label(); final Label end = new Label(); final Label handler = new Label(); @@ -88,7 +88,7 @@ void correctlyConvertsToXmir() throws ImpossibleModificationException { */ @ParameterizedTest @MethodSource("cases") - void correctlyConvertsToXmirIfSomeLabelsAreAbsent( + void convertsToXmirIfSomeLabelsAreAbsent( final Label start, final Label end, final Label handler,