Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2018-10-12 09:02:51 +0300
committerMichael Grunder <michael.grunder@gmail.com>2018-10-12 10:24:16 +0300
commit0af2a7fe06eb4e6c3140fb2636fb1caaf78e96b3 (patch)
tree612456f94b8d2cfa4642da6706bb99f68a5bdec7 /tests
parentcd6ebc6d7f56ef652cb1dbe5e02126e95aa30156 (diff)
missing space between command and args
Diffstat (limited to 'tests')
-rw-r--r--tests/RedisTest.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/RedisTest.php b/tests/RedisTest.php
index df650ee5..28faafa8 100644
--- a/tests/RedisTest.php
+++ b/tests/RedisTest.php
@@ -6109,6 +6109,7 @@ class Redis_Test extends TestSuite
$cmd = (getenv('TEST_PHP_EXECUTABLE') ?: (defined('PHP_BINARY') ? PHP_BINARY : 'php')); // PHP_BINARY is 5.4+
if ($test_args = getenv('TEST_PHP_ARGS')) {
+ $cmd .= ' ';
$cmd .= $test_args;
} else {
/* Only append specific extension directives if PHP hasn't been compiled with what we need statically */