Skip to content

Commit

Permalink
standardize order
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacovCR committed May 22, 2022
1 parent 70fa65b commit 404f492
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/execution/__tests__/abstract-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ describe('Execute: Handles execution of abstract types', () => {
isFriendly: Boolean
}
interface Pet implements Animal & Named {
interface Pet implements Named & Animal {
name: String
isFriendly: Boolean
}
Expand All @@ -665,7 +665,7 @@ describe('Execute: Handles execution of abstract types', () => {
isFriendly: Boolean
}
type Dog implements Pet & Animal & Named {
type Dog implements Pet & Named & Animal {
name: String
isFriendly: Boolean
}
Expand Down

0 comments on commit 404f492

Please sign in to comment.