Skip to content

Commit 750ad11

Browse files
committed
fix e2e
1 parent 4d11ccb commit 750ad11

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

provisioner/echo/serve.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ var (
5252
PlanComplete = []*proto.Response{{
5353
Type: &proto.Response_Plan{
5454
Plan: &proto.PlanComplete{
55-
Plan: []byte("{}"),
55+
Plan: []byte("{}"),
56+
ModuleFiles: []byte{},
5657
},
5758
},
5859
}}
@@ -249,6 +250,7 @@ func TarWithOptions(ctx context.Context, logger slog.Logger, responses *Response
249250
Parameters: resp.GetApply().GetParameters(),
250251
ExternalAuthProviders: resp.GetApply().GetExternalAuthProviders(),
251252
Plan: []byte("{}"),
253+
ModuleFiles: []byte{},
252254
}},
253255
})
254256
}

site/e2e/helpers.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@ const createTemplateVersionTar = async (
584584
timings: response.apply?.timings ?? [],
585585
presets: [],
586586
plan: emptyPlan,
587+
moduleFiles: new Uint8Array(),
587588
},
588589
};
589590
});
@@ -707,6 +708,7 @@ const createTemplateVersionTar = async (
707708
modules: [],
708709
presets: [],
709710
plan: emptyPlan,
711+
moduleFiles: new Uint8Array(),
710712
...response.plan,
711713
} as PlanComplete;
712714
response.plan.resources = response.plan.resources?.map(fillResource);

0 commit comments

Comments
 (0)