File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import (
2020 "github.com/smartcontractkit/chainlink-testing-framework/parrot"
2121)
2222
23- const defaultParrotImage = "kalverra/parrot:v0.5.0 "
23+ const defaultParrotImage = "kalverra/parrot"
2424
2525// Parrot is a test environment component that wraps a Parrot server.
2626type Parrot struct {
@@ -120,7 +120,10 @@ func (p *Parrot) StartContainer() error {
120120}
121121
122122func (p * Parrot ) getContainerRequest () (tc.ContainerRequest , error ) {
123- pImage := mirror .AddMirrorToImageIfSet (defaultParrotImage )
123+ pImage := mirror .AddMirrorToImageIfSet ("parrot" )
124+ if pImage == "" || pImage == "parrot" {
125+ pImage = defaultParrotImage
126+ }
124127
125128 return tc.ContainerRequest {
126129 Name : p .ContainerName ,
You can’t perform that action at this time.
0 commit comments