Skip to content

Commit 20cb9ef

Browse files
authored
Merge pull request #82 from smartcontractkit/chore/fixImport
Fixes import
2 parents d580481 + cb31146 commit 20cb9ef

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ in an environment, or a local installation.
6767

6868
When running tests locally, it's advised to use minikube. To spin up a cluster, use:
6969

70-
```
70+
```sh
7171
minikube start
7272
```
7373

@@ -85,19 +85,20 @@ ran with the go CLI.
8585

8686
Run:
8787

88-
```
88+
```sh
8989
ginkgo -r
9090
```
9191

9292
### Go
9393

9494
Run:
9595

96-
```
96+
```sh
9797
go test ./..
9898
```
9999

100100
### Volume tests
101-
```
101+
102+
```sh
102103
NETWORK="ethereum_geth_performance" make test_performance
103104
```

explorer/cmd/main.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
package main
22

33
import (
4-
"explorer"
4+
"os"
5+
56
"github.com/rs/zerolog"
67
"github.com/rs/zerolog/log"
7-
"os"
8+
"github.com/smartcontractkit/integrations-framework/explorer"
89
)
910

1011
func main() {

0 commit comments

Comments
 (0)