Skip to content

Commit 63b6adc

Browse files
committed
Fix CI
1 parent 6f3853f commit 63b6adc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Feature/Controllers/SearchIncludingRelationshipsOperationsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ public function test_getting_a_list_of_resources_including_has_many_relation():
581581
);
582582
}
583583

584-
public function test_getting_a_list_of_resources_including_has_many_relation_with_loaded_relations_in_model(): void
584+
public function test_getting_a_list_of_resources_including_has_many_relation_with_eager_loading_relations(): void
585585
{
586586
$matchingModel = ModelFactory::new()
587587
->createOne()->fresh();

tests/Support/Rest/Resources/HasManyThroughResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class HasManyThroughResource extends Resource
1616
public function relations(RestRequest $request): array
1717
{
1818
return [
19-
BelongsTo::make('hasManyRelation', HasManyResource::class)
19+
BelongsTo::make('hasManyRelation', HasManyResource::class),
2020
];
2121
}
2222

0 commit comments

Comments
 (0)