Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
vitormattos authored and github-actions[bot] committed Apr 29, 2024
1 parent 799daec commit 44ffedb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
class TestCase extends BaseTestCase
{
public PageMock $pageData;

public $app;

protected function setUp(): void
Expand Down
3 changes: 2 additions & 1 deletion tests/unit/LocalePathTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
final class LocalePathTest extends TestCase
{
#[DataProvider('providerLocalePath')]
public function testLocalePath(string $path, ?string $locale, string $expected) {
public function testLocalePath(string $path, ?string $locale, string $expected)
{
$actual = locale_path($this->pageData, $path, $locale);
$this->assertEquals($expected, $actual);
}
Expand Down

0 comments on commit 44ffedb

Please sign in to comment.