From f6439564b7c8cfc69f106467f68e9599ef0c52fb Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Thu, 7 Aug 2014 16:06:09 +0000 Subject: [PATCH] yeah these error tests still work --- values_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/values_test.go b/values_test.go index 91ec965..9f3c8a0 100644 --- a/values_test.go +++ b/values_test.go @@ -39,10 +39,10 @@ var valueTests = []valueTest{ {"+one two ", String("one two ")}, // trailing space {"+ one two", String(" one two")}, // leading space - // {"-hello", Error("hello")}, - // {"-one two", Error("one two")}, // intermediate space - // {"-one two ", Error("one two ")}, // trailing space - // {"- one two", Error(" one two")}, // leading space + {"-hello", Error("hello")}, + {"-one two", Error("one two")}, // intermediate space + {"-one two ", Error("one two ")}, // trailing space + {"- one two", Error(" one two")}, // leading space // {"$-1\r\n", nil}, // {"$0\r\n\r\n", BulkString("")}, // is this even a thing?