Skip to content

Commit

Permalink
[Console] Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chalasr committed Dec 11, 2024
1 parent 722fa7c commit fefcc18
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Tests/ApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ protected function tearDown(): void
pcntl_signal(\SIGTERM, \SIG_DFL);
pcntl_signal(\SIGUSR1, \SIG_DFL);
pcntl_signal(\SIGUSR2, \SIG_DFL);
pcntl_signal(\SIGALRM, \SIG_DFL);
}
}

Expand Down
1 change: 1 addition & 0 deletions Tests/ConsoleEventsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ protected function tearDown(): void
pcntl_signal(\SIGTERM, \SIG_DFL);
pcntl_signal(\SIGUSR1, \SIG_DFL);
pcntl_signal(\SIGUSR2, \SIG_DFL);
pcntl_signal(\SIGALRM, \SIG_DFL);
}
}

Expand Down
1 change: 1 addition & 0 deletions Tests/SignalRegistry/SignalRegistryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ protected function tearDown(): void
pcntl_signal(\SIGTERM, \SIG_DFL);
pcntl_signal(\SIGUSR1, \SIG_DFL);
pcntl_signal(\SIGUSR2, \SIG_DFL);
pcntl_signal(\SIGALRM, \SIG_DFL);
}

public function testOneCallbackForASignalSignalIsHandled()
Expand Down

0 comments on commit fefcc18

Please sign in to comment.