diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | test/integration/container_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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) |
