Refactor cache reading to reduce number of return values

This commit is contained in:
William Elwood 2019-10-30 23:40:06 +00:00 committed by Frank Denis
parent fe34d07b68
commit 4a792026eb
2 changed files with 20 additions and 27 deletions

View file

@ -255,7 +255,7 @@ func prepSourceTestCache(t *testing.T, d *SourceTestData, e *SourceTestExpect, s
case TestStatePartial, TestStatePartialSig:
e.err = "signature"
case TestStateMissing, TestStateMissingSig:
e.err = "not present"
e.err = "stat"
case TestStateOpenErr, TestStateOpenSigErr:
e.err = os.ErrPermission.Error()
}
@ -302,8 +302,6 @@ func prepSourceTestDownload(t *testing.T, d *SourceTestData, e *SourceTestExpect
if e.success {
e.err = ""
}
} else if !e.success {
e.err = "no URL"
}
}