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,