Skip to content

Commit

Permalink
Merge pull request #3585 from ActiveState/mitchell/dx-3114
Browse files Browse the repository at this point in the history
Fix failing tests.
  • Loading branch information
mitchell-as authored Nov 7, 2024
2 parents 747e0c9 + d4caca7 commit 19f39ce
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/integration/publish_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,12 @@ func (suite *PublishIntegrationTestSuite) TestPublish() {
expect expect
}

tempFile := fileutils.TempFilePath("", "*.zip")
tempFile := fileutils.TempFilePath("", ".zip")
suite.Require().NoError(fileutils.Touch(tempFile))
defer os.Remove(tempFile)

tempFileInvalid := fileutils.TempFilePath("", "*.notzip")
tempFileInvalid := fileutils.TempFilePath("", ".notzip")
suite.Require().NoError(fileutils.Touch(tempFileInvalid))
defer os.Remove(tempFileInvalid)

ts := e2e.New(suite.T(), false)
Expand Down

0 comments on commit 19f39ce

Please sign in to comment.