From e71abfa4cd2732139f786022ab1111718e683fbb Mon Sep 17 00:00:00 2001 From: Alexander Chepurnoy Date: Thu, 3 Oct 2024 14:08:17 +0300 Subject: [PATCH] tree versioning artefact removed from test --- .../scala/sigmastate/TestingInterpreterSpecification.scala | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sc/shared/src/test/scala/sigmastate/TestingInterpreterSpecification.scala b/sc/shared/src/test/scala/sigmastate/TestingInterpreterSpecification.scala index 5420f0a38e..2b18c74d63 100644 --- a/sc/shared/src/test/scala/sigmastate/TestingInterpreterSpecification.scala +++ b/sc/shared/src/test/scala/sigmastate/TestingInterpreterSpecification.scala @@ -334,11 +334,7 @@ class TestingInterpreterSpecification extends CompilerTestingCommons if (activatedVersionInTests < V6SoftForkVersion) { an [sigmastate.exceptions.MethodNotFound] should be thrownBy testEval(source) } else { - if(ergoTreeVersionInTests >= V6SoftForkVersion) { - testEval(source) - } else { - an [java.lang.reflect.InvocationTargetException] should be thrownBy testEval(source) - } + testEval(source) } }