Skip to content

Commit f25d2c6

Browse files
committed
Fix labels test
Signed-off-by: Riddhesh Sanghvi <riddheshsanghvi96@gmail.com>
1 parent c143c16 commit f25d2c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/bootstrap/FeatureContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ public function thereShouldBeContainersWithLabel($expected_running_containers, P
382382
$labels = $pyStringNode->getStrings();
383383
$label_string = implode($labels, ' -f label=');
384384

385-
$result = EE::launch( "docker ps -aqf label=$label_string | wc -l", false, true );
385+
$result = EE::launch( "docker ps -qf label=$label_string | wc -l", false, true );
386386
$running_containers = (int) trim($result->stdout);
387387

388388
if($expected_running_containers === $running_containers) {

0 commit comments

Comments
 (0)