Skip to content

Commit 1e7391d

Browse files
committed
lint
1 parent f515b7e commit 1e7391d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/wrap/tests/makeRemoteExecutableSchema.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ describe('remote subscriptions', () => {
105105
let notificationCnt = 0;
106106
const sub1 = subscribe(schema, subscription);
107107
sub1.then(async (results) => {
108-
for await (let result of results as AsyncIterable<ExecutionResult>) {
108+
for await (const result of results as AsyncIterable<ExecutionResult>) {
109109
expect(result).toHaveProperty('data');
110110
expect(result.data).toEqual(mockNotification);
111111
notificationCnt++;
@@ -114,7 +114,7 @@ describe('remote subscriptions', () => {
114114

115115
const sub2 = subscribe(schema, subscription);
116116
sub2.then(async (results) => {
117-
for await (let result of results as AsyncIterable<ExecutionResult>) {
117+
for await (const result of results as AsyncIterable<ExecutionResult>) {
118118
expect(result).toHaveProperty('data');
119119
expect(result.data).toEqual(mockNotification);
120120
}

0 commit comments

Comments
 (0)