diff options
Diffstat (limited to 'core/tests/Drupal/Tests/UnitTestCaseTest.php')
-rw-r--r-- | core/tests/Drupal/Tests/UnitTestCaseTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/tests/Drupal/Tests/UnitTestCaseTest.php b/core/tests/Drupal/Tests/UnitTestCaseTest.php index ec22b183ab3f..0ceeea843c5b 100644 --- a/core/tests/Drupal/Tests/UnitTestCaseTest.php +++ b/core/tests/Drupal/Tests/UnitTestCaseTest.php @@ -14,7 +14,7 @@ class UnitTestCaseTest extends UnitTestCase { /** * Tests the dump() function in a test run in the same process. */ - public function testVarDumpSameProcess() { + public function testVarDumpSameProcess(): void { // Append the stream capturer to the STDERR stream, so that we can test the // dump() output and also prevent it from actually outputting in this // particular test. @@ -37,7 +37,7 @@ class UnitTestCaseTest extends UnitTestCase { * * @runInSeparateProcess */ - public function testVarDumpSeparateProcess() { + public function testVarDumpSeparateProcess(): void { // Append the stream capturer to the STDERR stream, so that we can test the // dump() output and also prevent it from actually outputting in this // particular test. |