Skip to content

Commit

Permalink
fix(tests): remove commented parameters in InvalidJsons.php
Browse files Browse the repository at this point in the history
- Removed commented-out 'parameters' array to clean up code.
- Updated dataset structure for better readability.
- Ensured consistency in dataset formatting.
  • Loading branch information
[email protected] committed Sep 30, 2024
1 parent fcd0aca commit b3f6650
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions tests/Datasets/InvalidJsons.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,19 @@

dataset('commit command parameters', [
[
'parameters' => [],
/*'parameters' =>*/ [],
],
[
'parameters' => [
/*'parameters' =>*/ [
'--dry-run' => true,
],
],
[
'parameters' => [
// '--diff' => <<<'DIFF'
// tests/Pest.php | 1 +
// tests/Unit/ConfigManagerTest.php | 2 +-
// DIFF
// ,
/*'parameters' =>*/ [
'--diff' => <<<'DIFF'
tests/Pest.php | 1 +
tests/Unit/ConfigManagerTest.php | 2 +-
DIFF,
],
],
]);
Expand Down

0 comments on commit b3f6650

Please sign in to comment.