rename SQLCipher specific tests

This commit is contained in:
Frank Braun 2017-05-08 19:01:47 +00:00
parent 1ea89987f6
commit 6bf6f0208d
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ var mapping = map[string]string{
"baz": "three",
}
func TestInsert(t *testing.T) {
func TestSQLCipherParallelInsert(t *testing.T) {
t.Parallel()
insertValueQuery, err := db.Prepare("INSERT INTO KeyValueStore (KeyEntry, ValueEntry) VALUES (?, ?);")
if err != nil {
@ -65,7 +65,7 @@ func TestInsert(t *testing.T) {
}
}
func TestSelect(t *testing.T) {
func TestSQLCipherParallelSelect(t *testing.T) {
t.Parallel()
getValueQuery, err := db.Prepare("SELECT ValueEntry FROM KeyValueStore WHERE KeyEntry=?;")
if err != nil {