diff options
Diffstat (limited to 'server_config_test.go')
-rw-r--r-- | server_config_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server_config_test.go b/server_config_test.go index e116323d..5e874649 100644 --- a/server_config_test.go +++ b/server_config_test.go @@ -85,7 +85,7 @@ func Test_ServerConfig_ErrorMethod(t *testing.T) { func Test_ServerConfig_Cmd(t *testing.T) { cfg := &ServerConfig{ - Command: "php php-src/tests/client.php pipes", + Command: "php tests/client.php pipes", } cmd := cfg.makeCommand() @@ -94,7 +94,7 @@ func Test_ServerConfig_Cmd(t *testing.T) { func Test_ServerConfig_SetEnv(t *testing.T) { cfg := &ServerConfig{ - Command: "php php-src/tests/client.php pipes", + Command: "php tests/client.php pipes", } cfg.SetEnv("key", "value") @@ -109,7 +109,7 @@ func Test_ServerConfig_SetEnv(t *testing.T) { func Test_ServerConfigDefaults(t *testing.T) { cfg := &ServerConfig{ - Command: "php php-src/tests/client.php pipes", + Command: "php tests/client.php pipes", } cfg.SetDefaults() @@ -121,7 +121,7 @@ func Test_ServerConfigDefaults(t *testing.T) { func Test_Config_Upscale(t *testing.T) { cfg := &ServerConfig{ - Command: "php php-src/tests/client.php pipes", + Command: "php tests/client.php pipes", RelayTimeout: 1, Pool: &Config{ AllocateTimeout: 1, |