aboutsummaryrefslogtreecommitdiff
path: root/server/store/store_test.go
diff options
context:
space:
mode:
authorNiall Sheridan <nsheridan@gmail.com>2017-04-10 22:13:12 +0100
committerNiall Sheridan <nsheridan@gmail.com>2017-04-10 22:13:12 +0100
commitd919f85c19cb754b1507b45e1609292f495ffff9 (patch)
tree6ce4baf61ecfe3ea952c2a28d2934d2c61f8036e /server/store/store_test.go
parent30802e07b2d84fbc213b490d3402707dffe60096 (diff)
remove calls to t.Parallel()
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)