Rename database package to sqlite

This commit is contained in:
TwinProduction
2021-07-18 16:13:05 -04:00
committed by Chris
parent aac72e3741
commit c700154f5e
7 changed files with 48 additions and 48 deletions

View File

@ -5,7 +5,7 @@ import (
"testing"
"time"
"github.com/TwinProduction/gatus/storage/store/database"
"github.com/TwinProduction/gatus/storage/store/sqlite"
)
func TestInitialize(t *testing.T) {
@ -38,7 +38,7 @@ func TestInitialize(t *testing.T) {
{
Name: "sqlite-no-file",
Cfg: &Config{Type: TypeSQLite},
ExpectedErr: database.ErrFilePathNotSpecified,
ExpectedErr: sqlite.ErrFilePathNotSpecified,
},
{
Name: "sqlite-with-file",