From ab03c804395da9863092b7f7dbda257526343a07 Mon Sep 17 00:00:00 2001 From: volodya-lombrozo Date: Mon, 30 Oct 2023 18:51:54 +0300 Subject: [PATCH] feat(#211): add one more check that proves bugfix --- src/it/distilled/verify.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/src/it/distilled/verify.groovy b/src/it/distilled/verify.groovy index 08bc60069..f46ea2cb3 100644 --- a/src/it/distilled/verify.groovy +++ b/src/it/distilled/verify.groovy @@ -25,6 +25,7 @@ String log = new File(basedir, 'build.log').text; assert log.contains("BUILD SUCCESS") assert log.contains("Result: 31") +assert !log.contains("java.lang.ClassNotFoundException") //Check that we have generated all the required XMIR object files. assert new File(basedir, 'target/jeo/xmir/org/eolang/jeo/Main.xmir').exists() assert new File(basedir, 'target/jeo/xmir/org/eolang/jeo/A.xmir').exists()