Merged in bugfix/regression (pull request #28)

Fix Regression Tests

* firstfixes
This commit is contained in:
Michael McGuinness
2025-01-18 02:28:43 +00:00
parent fa95d733ca
commit 897fd1c6dd
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ func TestNew(t *testing.T) {
_, cleanup := test.CreateDB(t, ctx, &test.CreateDatabaseConfig{
Migrations: &database.MigrationConfig{
BasePath: path.Join(os.Getenv("PWD"), "../.."),
BasePath: path.Join(os.Getenv("PWD"), "../../.."),
},
})
defer cleanup()
@@ -31,7 +31,7 @@ func TestNew(t *testing.T) {
}
cfg := &Config{
RegisterHandlers: registerHandlers,
BasePath: path.Join(os.Getenv("PWD"), "../.."),
BasePath: path.Join(os.Getenv("PWD"), "../../.."),
}
server := New(ctx, cfg)