From fd458ae3971dc116d3fa26d0c3467107f690b0bc Mon Sep 17 00:00:00 2001 From: Brendan Abolivier Date: Tue, 21 May 2019 20:41:46 +0100 Subject: [PATCH] Fix path in mediaapi integration test --- cmd/mediaapi-integration-tests/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/mediaapi-integration-tests/main.go b/cmd/mediaapi-integration-tests/main.go index cc8451191..fd6982fd3 100644 --- a/cmd/mediaapi-integration-tests/main.go +++ b/cmd/mediaapi-integration-tests/main.go @@ -41,7 +41,7 @@ var ( // Postgres docker container name (for running psql). If not set, psql must be in PATH. postgresContainerName = os.Getenv("POSTGRES_CONTAINER") // Test image to be uploaded/downloaded - testJPEG = test.Defaulting(os.Getenv("TEST_JPEG_PATH"), "src/github.com/matrix-org/dendrite/cmd/mediaapi-integration-tests/totem.jpg") + testJPEG = test.Defaulting(os.Getenv("TEST_JPEG_PATH"), "cmd/mediaapi-integration-tests/totem.jpg") kafkaURI = test.Defaulting(os.Getenv("KAFKA_URIS"), "localhost:9092") )