Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

validation-test.ts: various grammar fixes #3452

Merged
merged 6 commits into from Jan 10, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/type/__tests__/validation-test.ts
Expand Up @@ -1065,7 +1065,7 @@ describe('Type System: Object fields must have output types', () => {
});

describe('Type System: Objects can only implement unique interfaces', () => {
it('rejects an Object implementing a non-type values', () => {
it('rejects an Object implementing a non-type value', () => {
const schema = new GraphQLSchema({
query: new GraphQLObjectType({
name: 'BadObject',
Expand Down Expand Up @@ -1512,7 +1512,7 @@ describe('Type System: Arguments must have input types', () => {
]);
});

it('rejects an required argument that is deprecated', () => {
it('rejects a required argument that is deprecated', () => {
const schema = buildSchema(`
directive @BadDirective(
badArg: String! @deprecated
Expand Down