Removed an extra '/' from the TestFileExistsLocally test in common/config_test.go

This commit is contained in:
Ali Rizvi-Santiago 2018-02-02 20:36:08 -06:00
parent efc97dbda2
commit d4b00b722a
1 changed files with 1 additions and 1 deletions

View File

@ -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