From 10e5e38b53df0f5f80e72a929c01af6c84d7f847 Mon Sep 17 00:00:00 2001 From: dmathieu <42@dmathieu.com> Date: Wed, 12 Jul 2017 14:33:57 +0200 Subject: [PATCH] remove ^ from custom quote characters As of #563, this charater is not quoted anymore. --- text_formatter_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/text_formatter_test.go b/text_formatter_test.go index dc4911f..1fc55ae 100644 --- a/text_formatter_test.go +++ b/text_formatter_test.go @@ -93,7 +93,6 @@ func TestEscaping_CustomQuoteCharacter(t *testing.T) { }{ {`ba"r`, `ba"r`, `'`}, {`ba'r`, `ba\'r`, `'`}, - {`ba^r`, `ba\^r`, `^`}, {`ba'r`, `ba'r`, `^`}, }