Merge pull request #8945 from cli/wm/you-didnt-see-nothin

Close zip file in run view tests
This commit is contained in:
William Martin 2024-04-08 17:02:09 +02:00 committed by GitHub
commit a76230454a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1585,6 +1585,7 @@ func TestRunLog(t *testing.T) {
f, err := os.Open("./fixtures/run_log.zip")
require.NoError(t, err)
defer f.Close()
require.NoError(t, rlc.Create("key", f))