Skip to content

Commit

Permalink
xml: pidx_test: avoid using random for file names
Browse files Browse the repository at this point in the history
Signed-off-by: Charles Oliveira <[email protected]>
  • Loading branch information
chaws committed Mar 18, 2022
1 parent f7d408b commit 7d9df8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/xml/pidx_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ func TestPidxXML(t *testing.T) {
})

t.Run("test finding pdsc tag", func(t *testing.T) {
fileName := utils.RandStringBytes(10) + ".pidx"
fileName := "test-finding-pdsc-tag.pidx"
defer os.Remove(fileName)

pdscTag1 := xml.PdscTag{
Expand Down

0 comments on commit 7d9df8c

Please sign in to comment.