From a7bad96a7c66952aa11c96c32619c86725f90586 Mon Sep 17 00:00:00 2001 From: Paulo Sousa Date: Tue, 18 Jun 2024 14:28:08 -0300 Subject: [PATCH] php: fix tests --- tests/php/tests.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/php/tests.bats b/tests/php/tests.bats index 39a9f73..81f0696 100644 --- a/tests/php/tests.bats +++ b/tests/php/tests.bats @@ -141,7 +141,7 @@ EOF run /var/lib/tsuru/deploy for version in 5.6 7.0 7.1; do run bash -c "egrep '(FOO|BAR)' /etc/php/${version}/fpm/environment.conf | tr '\n' ' '" - [ "$output" = "env[BAR] = 2 env[FOO] = 1 " ] + [ "$output" = "env[BAR] = 1 env[FOO] = 2 " ] done }