Skip to content

Commit

Permalink
Cleanup & fix append test
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexVanderbist committed Jul 5, 2021
1 parent c3ec98b commit b177fed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/AppendTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function it_can_append_collections()
->allowedAppends('FullName')
->get();

$this->assertCollectionAttributeLoaded($models, 'fullname');
$this->assertCollectionAttributeLoaded($models, 'FullName');
}

/** @test */
Expand All @@ -70,7 +70,7 @@ public function it_can_append_paginates()
->allowedAppends('FullName')
->paginate();

$this->assertPaginateAttributeLoaded($models, 'fullname');
$this->assertPaginateAttributeLoaded($models, 'FullName');
}

/** @test */
Expand Down

0 comments on commit b177fed

Please sign in to comment.