diff options
author | Wolfy-J <[email protected]> | 2018-09-23 14:00:08 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-09-23 14:00:08 +0300 |
commit | f7d64d8e8592951ed5a0f0b06db608bc73786ea2 (patch) | |
tree | 1bdef1618288221495f1f38bb528e71cca907e2e /server_config_test.go | |
parent | 4815ebb760672c7fa541c941d7f47cd316656020 (diff) |
- new directory structure
- singular exception
- starting exception deprecation
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, |