From d594680e4fbad96d7739affffc0c1eaff6ea43f1 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Thu, 30 Jul 2015 21:22:44 -0700 Subject: [PATCH] fix stats test Signed-off-by: Victor Vieux --- test/integration/api/stats.bats | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/integration/api/stats.bats b/test/integration/api/stats.bats index 01827b11d0..3a7f4e599b 100644 --- a/test/integration/api/stats.bats +++ b/test/integration/api/stats.bats @@ -27,7 +27,8 @@ function teardown() { # verify content grep -q "CPU %" "$TEMP_FILE" - grep -q "MEM USAGE/LIMIT" "$TEMP_FILE" + grep -q "MEM USAGE" "$TEMP_FILE" + grep -q "LIMIT" "$TEMP_FILE" rm -f $TEMP_FILE }