aboutsummaryrefslogtreecommitdiff
path: root/server/store/store_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/store/store_test.go')
-rw-r--r--server/store/store_test.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/server/store/store_test.go b/server/store/store_test.go
index 71a74c0..9a8a4be 100644
--- a/server/store/store_test.go
+++ b/server/store/store_test.go
@@ -20,7 +20,6 @@ import (
)
func TestParseCertificate(t *testing.T) {
- t.Parallel()
a := assert.New(t)
now := uint64(time.Now().Unix())
r, _ := rsa.GenerateKey(rand.Reader, 1024)
@@ -104,13 +103,11 @@ func testStore(t *testing.T, db CertStorer) {
}
func TestMemoryStore(t *testing.T) {
- t.Parallel()
db := NewMemoryStore()
testStore(t, db)
}
func TestMySQLStore(t *testing.T) {
- t.Parallel()
if os.Getenv("MYSQL_TEST") == "" {
t.Skip("No MYSQL_TEST environment variable")
}
@@ -133,7 +130,6 @@ func TestMySQLStore(t *testing.T) {
}
func TestSQLiteStore(t *testing.T) {
- t.Parallel()
f, err := ioutil.TempFile("", "sqlite_test_db")
if err != nil {
t.Error(err)