Skip to content

Commit e124ca8

Browse files
1 parent 5abe152 commit e124ca8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utilities/__tests__/buildASTSchema-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ describe('Schema Builder', () => {
259259
str(int: Int, bool: Boolean): String
260260
}
261261
`;
262-
const output = cycleOutput(body, 'Hello');
262+
const output = cycleOutput(body);
263263
expect(output).to.equal(body);
264264
});
265265

@@ -273,7 +273,7 @@ describe('Schema Builder', () => {
273273
str: String
274274
}
275275
`;
276-
const output = cycleOutput(body, 'Hello');
276+
const output = cycleOutput(body);
277277
expect(output).to.equal(body);
278278
});
279279

0 commit comments

Comments
 (0)