Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesChou committed Jul 7, 2023
1 parent 0df0d81 commit adb26d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/Feature/Http/Controllers/User/CatalogPageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class CatalogPageTest extends TestCase
public function seeBasicItem()
{
$this->get('/catalog')
->assertSee('Categories')
->assertSee('Price');
->assertSeeText('Categories')
->assertSeeText('Price');
}
}
4 changes: 2 additions & 2 deletions tests/Feature/Http/Controllers/User/ShopTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ShopTest extends TestCase
public function seeBasicTitle()
{
$this->get('/')
->assertSee('Categories')
->assertSee('Just For You');
->assertSeeText('Categories')
->assertSeeText('Just For You');
}
}

0 comments on commit adb26d0

Please sign in to comment.