Skip to content

Commit 81ebe2a

Browse files
committed
standardize order
1 parent 1e2988e commit 81ebe2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/execution/__tests__/abstract-test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ describe('Execute: Handles execution of abstract types', () => {
655655
isFriendly: Boolean
656656
}
657657
658-
interface Pet implements Animal & Named {
658+
interface Pet implements Named & Animal {
659659
name: String
660660
isFriendly: Boolean
661661
}
@@ -665,7 +665,7 @@ describe('Execute: Handles execution of abstract types', () => {
665665
isFriendly: Boolean
666666
}
667667
668-
type Dog implements Pet & Animal & Named {
668+
type Dog implements Pet & Named & Animal {
669669
name: String
670670
isFriendly: Boolean
671671
}

0 commit comments

Comments
 (0)