From b18b742932c26df88eb97abb802237ae45cc9a72 Mon Sep 17 00:00:00 2001 From: Robin Tang Date: Mon, 16 Sep 2024 17:49:38 -0700 Subject: [PATCH] Remove testDB. --- clients/snowflake/snowflake.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/clients/snowflake/snowflake.go b/clients/snowflake/snowflake.go index d2036ee6e..95a3e8575 100644 --- a/clients/snowflake/snowflake.go +++ b/clients/snowflake/snowflake.go @@ -19,7 +19,6 @@ import ( type Store struct { db.Store - testDB bool // Used for testing configMap *types.DwhToTablesConfigMap config config.Config } @@ -80,7 +79,6 @@ func LoadSnowflake(cfg config.Config, _store *db.Store) (*Store, error) { if _store != nil { // Used for tests. return &Store{ - testDB: true, configMap: &types.DwhToTablesConfigMap{}, config: cfg, Store: *_store,