diff --git a/.changelog/3106.internal.md b/.changelog/3106.internal.md new file mode 100644 index 00000000000..b8c91cbdcb8 --- /dev/null +++ b/.changelog/3106.internal.md @@ -0,0 +1 @@ +go/tests/e2e: Add missing Clone() override to late-start diff --git a/go/oasis-test-runner/scenario/e2e/runtime/late_start.go b/go/oasis-test-runner/scenario/e2e/runtime/late_start.go index ad4aa2f30b8..088d45ae3f0 100644 --- a/go/oasis-test-runner/scenario/e2e/runtime/late_start.go +++ b/go/oasis-test-runner/scenario/e2e/runtime/late_start.go @@ -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 {