Skip to content

Commit 1c623b7

Browse files
Fix nested test
1 parent a95b6d9 commit 1c623b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smithy-typescript-integ-tests/src/nested.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {NestedUnionOne} from "@aws-smithy/typescript-integ-test-types";
1717

1818
describe("ridiculously nested structures", () => {
1919
it("still work", () => {
20-
expect(NestedUnionOne.validate({ value1: { value2: [ { unions: [ { value3: "abcdefghijk"}] } ] } }))
20+
expect(NestedUnionOne.validate({ value1: { value2: [ { unions: [ { value3: "abcdefg"}] } ] } }))
2121
.toEqual([]);
2222
})
2323
});

0 commit comments

Comments
 (0)