Skip to content

Commit 34e7471

Browse files
committed
Testing: Fixed some incorrect test case names
1 parent 10f5cee commit 34e7471

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Settings/PageListLimitsTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function test_shelf_count_is_used_on_shelves_view()
5252
$this->withHtml($resp)->assertElementCount('main [data-entity-type="bookshelf"]', 1);
5353
}
5454

55-
public function test_shelf_count_is_used_on_books_view()
55+
public function test_book_count_is_used_on_books_view()
5656
{
5757
$resp = $this->asAdmin()->get('/books');
5858
$defaultCount = min(Book::query()->count(), 18);
@@ -66,7 +66,7 @@ public function test_shelf_count_is_used_on_books_view()
6666
$this->withHtml($resp)->assertElementCount('main [data-entity-type="book"]', 1);
6767
}
6868

69-
public function test_shelf_count_is_used_on_search_view()
69+
public function test_search_count_is_used_on_search_view()
7070
{
7171
$resp = $this->asAdmin()->get('/search');
7272
$this->withHtml($resp)->assertElementCount('.entity-list [data-entity-id]', 18);

0 commit comments

Comments
 (0)