use url.QueryEscape() for documentation purposes

Related to issue #15
This commit is contained in:
Frank Braun 2020-08-28 18:39:39 +00:00
parent c35c778656
commit 20debb6b4d
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ import (
"io"
"io/ioutil"
"log"
"net/url"
"os"
"path/filepath"
"testing"
@ -30,7 +31,7 @@ CREATE TABLE KeyValueStore (
func init() {
// create DB
key := "passphrase"
key := url.QueryEscape("passphrase")
tmpdir, err := ioutil.TempDir("", testDir)
if err != nil {
panic(err)