Skip to content

Commit b177fed

Browse files
Cleanup & fix append test
1 parent c3ec98b commit b177fed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/AppendTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function it_can_append_collections()
5959
->allowedAppends('FullName')
6060
->get();
6161

62-
$this->assertCollectionAttributeLoaded($models, 'fullname');
62+
$this->assertCollectionAttributeLoaded($models, 'FullName');
6363
}
6464

6565
/** @test */
@@ -70,7 +70,7 @@ public function it_can_append_paginates()
7070
->allowedAppends('FullName')
7171
->paginate();
7272

73-
$this->assertPaginateAttributeLoaded($models, 'fullname');
73+
$this->assertPaginateAttributeLoaded($models, 'FullName');
7474
}
7575

7676
/** @test */

0 commit comments

Comments
 (0)