We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4364573 commit ddd2317Copy full SHA for ddd2317
1 file changed
tests/system/CLI/CLITest.php
@@ -438,13 +438,13 @@ public function testWindow(): void
438
{
439
$height = new ReflectionProperty(CLI::class, 'height');
440
$height->setAccessible(true);
441
- $height->setValue(null);
+ $height->setValue(null, null);
442
443
$this->assertIsInt(CLI::getHeight());
444
445
$width = new ReflectionProperty(CLI::class, 'width');
446
$width->setAccessible(true);
447
- $width->setValue(null);
+ $width->setValue(null, null);
448
449
$this->assertIsInt(CLI::getWidth());
450
}
0 commit comments