File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
tests/Database/SelectFields/NestedRelationLoadingTests Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -821,9 +821,7 @@ public function testRelationshipAlias(): void
821
821
]);
822
822
});
823
823
824
-
825
-
826
- $ graphql = <<<GRAQPHQL
824
+ $ graphql = <<<'GRAQPHQL'
827
825
{
828
826
users(select: true, with: true) {
829
827
id
@@ -840,7 +838,6 @@ public function testRelationshipAlias(): void
840
838
841
839
$ this ->sqlCounterReset ();
842
840
843
-
844
841
$ result = GraphQL::query ($ graphql );
845
842
846
843
$ this ->assertSqlQueries (
@@ -860,7 +857,7 @@ public function testRelationshipAlias(): void
860
857
[
861
858
'body ' => $ users [0 ]->posts [0 ]->body ,
862
859
'id ' => (string ) $ users [0 ]->posts [0 ]->id ,
863
- 'title ' => $ users [0 ]->posts [0 ]->title
860
+ 'title ' => $ users [0 ]->posts [0 ]->title ,
864
861
],
865
862
],
866
863
],
@@ -871,7 +868,6 @@ public function testRelationshipAlias(): void
871
868
$ this ->assertEquals ($ expectedResult , $ result );
872
869
}
873
870
874
-
875
871
protected function getEnvironmentSetUp ($ app )
876
872
{
877
873
parent ::getEnvironmentSetUp ($ app );
You can’t perform that action at this time.
0 commit comments