Skip to content

Commit d7d0109

Browse files
committed
fix serialization
1 parent a29e239 commit d7d0109

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
@@ -672,7 +672,7 @@ const createTemplateVersionTar = async (
672672
...response.plan,
673673
} as PlanComplete;
674674
tar.addFile(
675-
`${index}.init.protobuf`,
675+
`${index}.plan.protobuf`,
676676
Response.encode(response as Response).finish(),
677677
);
678678
});
@@ -784,7 +784,7 @@ const createTemplateVersionTar = async (
784784
response.graph.resources = response.graph.resources?.map(fillResource);
785785

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

0 commit comments

Comments
 (0)