From 49ad214929592314116a638938c46e66950df762 Mon Sep 17 00:00:00 2001 From: volodya-lombrozo Date: Fri, 29 Nov 2024 13:19:57 +0300 Subject: [PATCH] feat(#917): fix all the code offences --- .../representation/directives/DirectivesMetasTest.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/test/java/org/eolang/jeo/representation/directives/DirectivesMetasTest.java b/src/test/java/org/eolang/jeo/representation/directives/DirectivesMetasTest.java index 9eac7c689..0c69a5486 100644 --- a/src/test/java/org/eolang/jeo/representation/directives/DirectivesMetasTest.java +++ b/src/test/java/org/eolang/jeo/representation/directives/DirectivesMetasTest.java @@ -58,13 +58,11 @@ void createsMetasWithPackage() { @Test void addsAliasesForAllTheRequiredObjects() throws ImpossibleModificationException { - final String xml = new Xembler( - new BytecodeProgram(new BytecodeClass().helloWorldMethod()).directives("") - ).xml(); - System.out.println(xml); MatcherAssert.assertThat( "Can't create corresponding xembly directives for all the required objects", - xml, + new Xembler( + new BytecodeProgram(new BytecodeClass().helloWorldMethod()).directives("") + ).xml(), Matchers.allOf( XhtmlMatchers.hasXPath("/program/metas/meta/head[text()='alias']"), XhtmlMatchers.hasXPath("/program/metas/meta/tail[text()='jeo.opcode.return']"),