Skip to content

Commit 3d8167a

Browse files
B#187800 PHPFCI: warning when custom coverage is above or equal to global coverage
1 parent d958cc6 commit 3d8167a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Unit/Lib/Config/ConfigFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public function testCreateInspectConfigDuplicateOutputReport(): void
150150
touch($coveragePath);
151151

152152
$input = $this->createMock(InputInterface::class);
153-
$input->expects(self::exactly(5))->method('getOption')->willReturn($configPath, null, null, null);
153+
$input->expects(self::exactly(5))->method('getOption')->willReturn($configPath, null, null, null, null);
154154
$input->expects(self::once())->method('getArgument')->with('coverage')->willReturn([$coveragePath]);
155155

156156
$config = $this->factory->createInspectConfig($input);

0 commit comments

Comments
 (0)