Skip to content

Commit

Permalink
Remove unused arguments to cycleOuput (#1434)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov authored Jul 26, 2018
1 parent 5abe152 commit e124ca8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utilities/__tests__/buildASTSchema-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ describe('Schema Builder', () => {
str(int: Int, bool: Boolean): String
}
`;
const output = cycleOutput(body, 'Hello');
const output = cycleOutput(body);
expect(output).to.equal(body);
});

Expand All @@ -273,7 +273,7 @@ describe('Schema Builder', () => {
str: String
}
`;
const output = cycleOutput(body, 'Hello');
const output = cycleOutput(body);
expect(output).to.equal(body);
});

Expand Down

0 comments on commit e124ca8

Please sign in to comment.