Skip to content
Snippets Groups Projects
Commit dbd45a09 authored by Dan Lorenc's avatar Dan Lorenc
Browse files

Stick the generated RPM in a tmpdir.

I noticed this when running some tests locally.
parent 87bc52ce
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,8 @@ func TestUploadVerifyRekord(t *testing.T) {
func TestUploadVerifyRpm(t *testing.T) {
// Create a random rpm and sign it.
rpmPath := filepath.Join("rpm")
td := t.TempDir()
rpmPath := filepath.Join(td, "rpm")
createSignedRpm(t, rpmPath)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment