summaryrefslogtreecommitdiff
path: root/pkg/test/test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/test/test.go')
-rw-r--r--pkg/test/test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/test/test.go b/pkg/test/test.go
index 6d83ad0..e2ecfcb 100644
--- a/pkg/test/test.go
+++ b/pkg/test/test.go
@@ -77,7 +77,7 @@ func (e *env) newInstance() *Client {
func (c *Client) Send(format string, args ...interface{}) string {
s := fmt.Sprintf(format, args...)
- t := strings.Split(s, " ")
+ t := strings.Fields(s)
r, err := c.Client.Send(t)
if err != nil {