From d4b00b722add485cf9472bf47efa61a4854922e4 Mon Sep 17 00:00:00 2001 From: Ali Rizvi-Santiago Date: Fri, 2 Feb 2018 20:36:08 -0600 Subject: [PATCH] Removed an extra '/' from the TestFileExistsLocally test in common/config_test.go --- common/config_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/config_test.go b/common/config_test.go index 29574ee4e2d..8f170fe1d5d 100644 --- a/common/config_test.go +++ b/common/config_test.go @@ -293,7 +293,7 @@ func TestFileExistsLocally(t *testing.T) { Output bool }{ // file exists locally - {fmt.Sprintf("file:///%s/SomeDir/myfile.txt", portablepath), true}, + {fmt.Sprintf("file://%s/SomeDir/myfile.txt", portablepath), true}, // remote protocols short-circuit and are considered to exist locally {"https://myfile.iso", true}, // non-existent protocols do not exist and hence fail