From 7633c038e716d47bf1c6fc05b13576bb07c65ff4 Mon Sep 17 00:00:00 2001 From: Thomas Stromberg Date: Mon, 16 Sep 2019 20:36:29 -0700 Subject: [PATCH] Use v1.3.0 as test version to avoid 404 --- test/integration/driver_install_or_update_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/integration/driver_install_or_update_test.go b/test/integration/driver_install_or_update_test.go index 98a91abc2..8074dd442 100644 --- a/test/integration/driver_install_or_update_test.go +++ b/test/integration/driver_install_or_update_test.go @@ -77,7 +77,8 @@ func TestDriverInstallOrUpdate(t *testing.T) { os.Setenv("PATH", fmt.Sprintf("%s:%s", path, originalPath)) - newerVersion, err := semver.Make("1.1.3") + // NOTE: This should be a real version, as it impacts the downloaded URL + newerVersion, err := semver.Make("1.3.0") if err != nil { t.Fatalf("Expected new semver. test: %v, got: %v", tc.name, err) } -- GitLab