Skip to content

Commit 7c714d9

Browse files
committed
linting
1 parent 3397a8a commit 7c714d9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/execution/__tests__/variables-test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1324,7 +1324,7 @@ describe('Execute: Handles inputs', () => {
13241324
});
13251325
});
13261326

1327-
it ('when a fragment-variable is shadowed by an intermediate fragment-spread but defined in the operation-variables', () => {
1327+
it('when a fragment-variable is shadowed by an intermediate fragment-spread but defined in the operation-variables', () => {
13281328
const result = executeQueryWithFragmentArguments(`
13291329
query($x: String = "A") {
13301330
...a
@@ -1339,8 +1339,7 @@ describe('Execute: Handles inputs', () => {
13391339
`);
13401340
expect(result).to.deep.equal({
13411341
data: {
1342-
fieldWithNullableStringInput:
1343-
'"A"',
1342+
fieldWithNullableStringInput: '"A"',
13441343
},
13451344
});
13461345
});

0 commit comments

Comments
 (0)