From 70c7d145e5ac12c9caab55ada936727d8b90151f Mon Sep 17 00:00:00 2001 From: volodya-lombrozo Date: Fri, 29 Nov 2024 13:15:35 +0300 Subject: [PATCH] feat(#917): fix one more check in 'spring' integration test --- src/it/spring/verify.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/it/spring/verify.groovy b/src/it/spring/verify.groovy index aebb6cfdd..000a8aad0 100644 --- a/src/it/spring/verify.groovy +++ b/src/it/spring/verify.groovy @@ -33,7 +33,7 @@ assert app.exists() assert app.text.contains("metas") assert app.text.contains("package") // Check that we have "opcode" and "label" imports where they are needed -assert app.text.contains("jeo.opcode") +assert app.text.contains("jeo.opcode.return") //Check that if class doesn't have instructions, it doesn't have "opcode" imports. def empty = new File(basedir, 'target/generated-sources/jeo-xmir/org/eolang/jeo/spring/WithoutInstructions.xmir') assert empty.exists()