Skip to content

Commit 33f673a

Browse files
committed
chore: fixes for issues happened during precommit
1 parent 3d809fe commit 33f673a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

packages/smithy-client/src/lazy-json.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ StringWrapper.prototype = Object.create(String.prototype, {
2727
value: StringWrapper,
2828
enumerable: false,
2929
writable: true,
30-
configurable: true,
31-
},
30+
configurable: true
31+
}
3232
});
3333
Object.setPrototypeOf(StringWrapper, String);
3434

packages/smithy-client/src/split-every.spec.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ describe("splitEvery", () => {
4545
expect(splitEvery(m3, delim, count)).toMatchObject(["foo, bar", "baz"]);
4646
expect(splitEvery(m4, delim, count)).toMatchObject([
4747
"foo, bar",
48-
"baz, qux",
48+
"baz, qux"
4949
]);
5050
expect(splitEvery(m5, delim, count)).toMatchObject([
5151
"foo, bar",
5252
"baz, qux",
53-
"coo",
53+
"coo"
5454
]);
5555
expect(splitEvery(m6, delim, count)).toMatchObject([
5656
"foo, bar",
5757
"baz, qux",
58-
"coo, tan",
58+
"coo, tan"
5959
]);
6060
});
6161

@@ -66,15 +66,15 @@ describe("splitEvery", () => {
6666
expect(splitEvery(m3, delim, count)).toMatchObject(["foo, bar, baz"]);
6767
expect(splitEvery(m4, delim, count)).toMatchObject([
6868
"foo, bar, baz",
69-
"qux",
69+
"qux"
7070
]);
7171
expect(splitEvery(m5, delim, count)).toMatchObject([
7272
"foo, bar, baz",
73-
"qux, coo",
73+
"qux, coo"
7474
]);
7575
expect(splitEvery(m6, delim, count)).toMatchObject([
7676
"foo, bar, baz",
77-
"qux, coo, tan",
77+
"qux, coo, tan"
7878
]);
7979
});
8080
});

0 commit comments

Comments
 (0)