From 5df3729ce8c9730396df842fc6ca7f631285c389 Mon Sep 17 00:00:00 2001 From: Alex Bramley Date: Fri, 17 Apr 2015 20:42:59 +0100 Subject: [PATCH] Bad fluffle not running tests after changes. --- client/commands_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/client/commands_test.go b/client/commands_test.go index e6800dc..e0f4d83 100644 --- a/client/commands_test.go +++ b/client/commands_test.go @@ -59,11 +59,10 @@ func TestSplitMessage(t *testing.T) { }{ {"", 0, []string{""}}, {"foo", 0, []string{"foo"}}, - {"foo bar baz beep", 0, []string{"foo bar ...", "baz beep"}}, + {"foo bar baz beep", 0, []string{"foo bar baz beep"}}, {"foo bar baz beep", 15, []string{"foo bar baz ...", "beep"}}, - {"foo. bar baz, beep.", 0, []string{"foo. ...", "bar baz, ...", "beep."}}, {"foo bar, baz beep", 15, []string{"foo bar, ...", "baz beep"}}, - {"0123456789012345", 0, []string{"0123456789...", "012345"}}, + {"0123456789012345", 0, []string{"0123456789012345"}}, {"0123456789012345", 15, []string{"012345678901...", "2345"}}, {"0123456789012345", 16, []string{"0123456789012345"}}, }