This commit is contained in:
Michael McGuinness
2024-12-24 17:13:48 +00:00
parent 827d973053
commit 4dd050e390
46 changed files with 327 additions and 155 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ func createContainer(t *testing.T, ctx context.Context, config containerConfig)
}
req := testcontainers.ContainerRequest{
Image: "gotemplate_queue:latest",
Image: "queryorchestration_queue:latest",
Env: map[string]string{
"QUEUE_URL": config.Queue.URL,
"AWS_DEFAULT_REGION": config.Queue.Region,
@@ -178,7 +178,7 @@ func createDB(t *testing.T, ctx context.Context, network *testcontainers.DockerN
}
config := dbConfig{
Name: "gotemplate",
Name: "queryorchestration",
Password: "pass",
User: "postgres",
Port: port.Int(),
+1 -1
View File
@@ -3,7 +3,7 @@ package queue_test
import (
"context"
"encoding/json"
"gotemplate/internal/document"
"queryorchestration/internal/document"
"testing"
"github.com/google/uuid"