Skip to content

Commit

Permalink
~ Don't explicitly test for null
Browse files Browse the repository at this point in the history
  • Loading branch information
tylernathanreed authored Dec 21, 2023
1 parent 5efb953 commit 5178c97
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/Filesystem/JoinPathsHelperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public static function unixDataProvider()
{
yield ['app/Http/Kernel.php', join_paths('app', 'Http', 'Kernel.php')];
yield ['app/Http/Kernel.php', join_paths('app', '', 'Http', 'Kernel.php')];
yield ['app/Http/Kernel.php', join_paths('app', null, 'Http', 'Kernel.php')];
}

#[RequiresOperatingSystem('Windows')]
Expand All @@ -35,6 +34,5 @@ public static function windowsDataProvider()
{
yield ['app\Http\Kernel.php', join_paths('app', 'Http', 'Kernel.php')];
yield ['app\Http\Kernel.php', join_paths('app', '', 'Http', 'Kernel.php')];
yield ['app\Http\Kernel.php', join_paths('app', null, 'Http', 'Kernel.php')];
}
}

0 comments on commit 5178c97

Please sign in to comment.