Skip to content

Commit

Permalink
schema-parser-test: Fix order of properties in expect chain (#2617)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Jun 5, 2020
1 parent ae7d546 commit b4682e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/language/__tests__/schema-parser-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ describe('Schema Parser', () => {
}
`);

expect(toJSONDeep(doc)).to.nested.deep.property(
expect(toJSONDeep(doc)).to.deep.nested.property(
'definitions[0].description',
{
kind: 'StringValue',
Expand All @@ -130,7 +130,7 @@ describe('Schema Parser', () => {
}
`);

expect(toJSONDeep(doc)).to.nested.deep.property(
expect(toJSONDeep(doc)).to.deep.nested.property(
'definitions[0].description',
{
kind: 'StringValue',
Expand All @@ -149,7 +149,7 @@ describe('Schema Parser', () => {
}
`);

expect(toJSONDeep(doc)).to.nested.deep.property(
expect(toJSONDeep(doc)).to.deep.nested.property(
'definitions[0].description',
{
kind: 'StringValue',
Expand Down

0 comments on commit b4682e0

Please sign in to comment.