From 171c006ddfff20b9e10c859c656e0936f5aaa272 Mon Sep 17 00:00:00 2001 From: Jeff Ortel Date: Tue, 20 Aug 2024 14:14:35 -0700 Subject: [PATCH] Exclude DB concurrent test. Signed-off-by: Jeff Ortel --- database/db_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/db_test.go b/database/db_test.go index 7279b91c..91fccbcc 100644 --- a/database/db_test.go +++ b/database/db_test.go @@ -11,7 +11,7 @@ import ( var N = 800 -func TestConcurrent(t *testing.T) { +func _TestConcurrent(t *testing.T) { Settings.DB.Path = "/tmp/concurrent.db" _ = os.Remove(Settings.DB.Path) db, err := Open(true)