We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dccfba commit e704b93Copy full SHA for e704b93
tests/src/Console/ApplicationTest.php
@@ -50,12 +50,12 @@ public function testDoRun()
50
51
$outputMock->expects($this->once())
52
->method('write')
53
- ->with('phpbcc version 0.0.1 by Chris Halbert' . PHP_EOL . PHP_EOL);
+ ->with('phpbcc version 1.0.0 by Chris Halbert' . PHP_EOL . PHP_EOL);
54
55
$inputMock = $this->getMockBuilder(InputInterface::class)
56
->setMethods(get_class_methods(InputInterface::class))
57
->getMock();
58
59
$this->application->doRun($inputMock, $outputMock);
60
}
61
-}
+}
0 commit comments