Skip to content

Commit

Permalink
go/tests/e2e: add missing Clone() override to late-start
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrus committed Jul 13, 2020
1 parent 6c6e703 commit 4a58416
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions go/oasis-test-runner/scenario/e2e/runtime/late_start.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ func newLateStartImpl(name, clientBinary string, clientArgs []string) scenario.S
}
}

func (sc *lateStartImpl) Clone() scenario.Scenario {
return &lateStartImpl{
runtimeImpl: *sc.runtimeImpl.Clone().(*runtimeImpl),
}
}

func (sc *lateStartImpl) Fixture() (*oasis.NetworkFixture, error) {
f, err := sc.runtimeImpl.Fixture()
if err != nil {
Expand Down

0 comments on commit 4a58416

Please sign in to comment.