summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--test/integration/container_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 84114d6..77d9da4 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ test-unit:
@go test -shuffle=on ./...
test-integration: build-image
- @go test -tags=integration ./test/integration/...
+ @IMAGE_TAG=$(IMAGE_TAG) go test -tags=integration ./test/integration/...
test: test-unit test-integration
diff --git a/test/integration/container_test.go b/test/integration/container_test.go
index 8b3a823..81034bf 100644
--- a/test/integration/container_test.go
+++ b/test/integration/container_test.go
@@ -17,7 +17,7 @@ import (
)
func TestContainer(t *testing.T) {
- image := env.Fetch("IMAGE_TAG", "sparkled:main")
+ image := env.Fetch("IMAGE_TAG", "sparkled:invalid")
t.Logf("image: %v\n", image)
require.NotEmpty(t, image)