Skip to content

Commit

Permalink
updated composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
tito10047 committed Aug 27, 2024
1 parent f977be4 commit 2d2417d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"scripts": {
"test": "vendor/phpunit/phpunit/phpunit --no-configuration ./tests"
}
}
1 change: 0 additions & 1 deletion tests/MultiLevelStackTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public function testBasics(): void
$this->callLevel(1, function ($item) use (&$stack) {
$stack[] = $item;
});
var_dump($stack);
for ($level = 3; $level >= 1; $level--) {
for ($i = 3; $i >= 0; $i--) {
$this->assertEquals("{$level}:{$i}", array_shift($stack));
Expand Down

0 comments on commit 2d2417d

Please sign in to comment.