remove ^ from custom quote characters

As of #563, this charater is not quoted anymore.
This commit is contained in:
dmathieu 2017-07-12 14:33:57 +02:00
parent 6f87387fae
commit 10e5e38b53
1 changed files with 0 additions and 1 deletions

View File

@ -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`, `'`},
{`ba^r`, `ba\^r`, `^`},
{`ba'r`, `ba'r`, `^`}, {`ba'r`, `ba'r`, `^`},
} }