From 94aad7d4231e710b3ed7dba9a9747733153c5264 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Mon, 4 Jan 2016 22:06:12 -0800 Subject: [PATCH] fix plugin not found case in tests Signed-off-by: Victor Vieux --- test/integration/api/run.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/api/run.bats b/test/integration/api/run.bats index 383da53d3d..40cf7a082e 100644 --- a/test/integration/api/run.bats +++ b/test/integration/api/run.bats @@ -178,5 +178,5 @@ function teardown() { # check error message [ "$status" -ne 0 ] - [[ "${output}" == *"Plugin not found"* ]] + [[ "${output,,}" == *"plugin not found"* ]] }