From 0bdf272f882d001e6cd567af4dcd6235243cffd0 Mon Sep 17 00:00:00 2001 From: prolic Date: Tue, 7 Jun 2016 23:52:21 +0800 Subject: [PATCH] fix test case with old symfony console usage --- tests/Console/ConsumerRunnerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Console/ConsumerRunnerTest.php b/tests/Console/ConsumerRunnerTest.php index ba24921a..e77512e3 100644 --- a/tests/Console/ConsumerRunnerTest.php +++ b/tests/Console/ConsumerRunnerTest.php @@ -81,6 +81,6 @@ public function it_runs_application() $output = $tester->getDisplay(true); - $this->assertStringStartsWith('Humus Amqp Command Line Interface', $output); + $this->assertRegExp('/json_rpc_server\s\s\sStart a JSON-RPC server/', $output); } }