Skip to content

Commit 6965b33

Browse files
authored
fix(codegen): fix path for copying sts test file (#6148)
1 parent 4c20114 commit 6965b33

File tree

1 file changed

+1
-1
lines changed
  • codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/auth/http/integration

1 file changed

+1
-1
lines changed

codegen/smithy-aws-typescript-codegen/src/main/java/software/amazon/smithy/aws/typescript/codegen/auth/http/integration/AddSTSAuthCustomizations.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public void customize(TypeScriptCodegenContext codegenContext) {
165165
writer.write("export * from $S", "./" + ROLE_ASSUMERS_FILE);
166166
});
167167
// test/defaultRoleAssumers.spec.ts
168-
writerFactory.accept("test/" + ROLE_ASSUMERS_TEST_FILE + ".spec.ts", writer -> {
168+
writerFactory.accept("test/" + ROLE_ASSUMERS_TEST_FILE + ".ts", writer -> {
169169
String resourceName = STS_CLIENT_PREFIX + ROLE_ASSUMERS_TEST_FILE + ".ts";
170170
writer
171171
.pushState()

0 commit comments

Comments
 (0)