From 810c335115b7222b7ef30bee0fc88b03697e3829 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Tue, 3 May 2022 17:32:45 +0100 Subject: [PATCH] Call it `DENDRITE_TEST_SKIP_NODB` intead --- test/db.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/db.go b/test/db.go index 09536822c..fecae5d48 100644 --- a/test/db.go +++ b/test/db.go @@ -33,7 +33,7 @@ var DBTypeSQLite DBType = 1 var DBTypePostgres DBType = 2 var Quiet = false -var Required = os.Getenv("DENDRITE_SKIP_DB_TESTS") == "" +var Required = os.Getenv("DENDRITE_TEST_SKIP_NODB") == "" func fatalError(t *testing.T, format string, args ...interface{}) { if Required {