Skip to content

Commit

Permalink
fix(codegen): fix path for copying sts test file (#6148)
Browse files Browse the repository at this point in the history
  • Loading branch information
siddsriv authored Jun 4, 2024
1 parent 4c20114 commit 6965b33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public void customize(TypeScriptCodegenContext codegenContext) {
writer.write("export * from $S", "./" + ROLE_ASSUMERS_FILE);
});
// test/defaultRoleAssumers.spec.ts
writerFactory.accept("test/" + ROLE_ASSUMERS_TEST_FILE + ".spec.ts", writer -> {
writerFactory.accept("test/" + ROLE_ASSUMERS_TEST_FILE + ".ts", writer -> {
String resourceName = STS_CLIENT_PREFIX + ROLE_ASSUMERS_TEST_FILE + ".ts";
writer
.pushState()
Expand Down

0 comments on commit 6965b33

Please sign in to comment.