You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Create a new test with the `@EVMTest` annotation. An embedded EVM is used by default. To use Geth or Besu pass the node type into the annotation: `@EVMTest(NodeType.GETH)` or `@EVMTest(NodeType.BESU)`
@@ -82,11 +81,10 @@ class GreeterTest {
82
81
```groovy
83
82
repositories {
84
83
mavenCentral()
85
-
jcenter()
86
84
}
87
85
88
-
implementation "org.web3j:core:4.12.1"
89
-
testCompile "org.web3j:web3j-unit:4.12.1"
86
+
implementation "org.web3j:core:4.12.2"
87
+
testCompile "org.web3j:web3j-unit:4.12.2"
90
88
```
91
89
92
90
2. Create a new test with the `@EVMComposeTest` annotation.
0 commit comments