Skip to content

Commit 99e3fd9

Browse files
committed
fix serialization
1 parent e86c6e2 commit 99e3fd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/e2e/helpers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ const createTemplateVersionTar = async (
671671
...response.plan,
672672
} as PlanComplete;
673673
tar.addFile(
674-
`${index}.init.protobuf`,
674+
`${index}.plan.protobuf`,
675675
Response.encode(response as Response).finish(),
676676
);
677677
});
@@ -783,7 +783,7 @@ const createTemplateVersionTar = async (
783783
response.graph.resources = response.graph.resources?.map(fillResource);
784784

785785
tar.addFile(
786-
`${index}.plan.protobuf`,
786+
`${index}.graph.protobuf`,
787787
Response.encode(response as Response).finish(),
788788
);
789789
});

0 commit comments

Comments
 (0)