Skip to content

Commit

Permalink
i694-box-opt: use getStats() method
Browse files Browse the repository at this point in the history
  • Loading branch information
aslesarenko committed Mar 10, 2021
1 parent 8227788 commit 252071e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ class SoftForkabilitySpecification extends SigmaTestingData with BeforeAndAfterA
}

override protected def afterAll(): Unit = {
println(ErgoLikeTestInterpreter.DefaultProcessorInTests.cache.stats())
println(ErgoLikeTestInterpreter.DefaultProcessorInTests.getStats())
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ class TestingInterpreterSpecification extends SigmaTestingCommons
}

override protected def afterAll(): Unit = {
println(processor.cache.stats())
println(processor.getStats())
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ class IcoExample extends SigmaTestingCommons
/** This is the last executed test suite, so this method is executed after all tests.
* We output statistics of how PrecompiledScriptProcessor cache was used. */
override protected def afterAll(): Unit = {
println(ErgoLikeTestInterpreter.DefaultProcessorInTests.cache.stats())
println(ErgoLikeTestInterpreter.DefaultProcessorInTests.getStats())
}

}

0 comments on commit 252071e

Please sign in to comment.