Skip to content

Commit

Permalink
Fix paketRestore integration tests
Browse files Browse the repository at this point in the history
remove check for restore cache file because newer
versions of paket create this file during install
  • Loading branch information
Larusso committed Feb 27, 2019
1 parent 397cfb9 commit d2c1903
Showing 1 changed file with 0 additions and 2 deletions.
Expand Up @@ -76,7 +76,6 @@ class PaketRestoreIntegrationSpec extends PaketIntegrationBaseSpec {
runTasksSuccessfully("paketInstall")

assert paketDirectories.every {it.exists()}
assert !restoreCacheFile.exists()

when: "deleting packages directory"
new File(projectDir, dirToDelete).delete()
Expand All @@ -86,7 +85,6 @@ class PaketRestoreIntegrationSpec extends PaketIntegrationBaseSpec {

then:
paketDirectories.every {it.exists()}
restoreCacheFile.exists()

where:
taskToRun = PaketGetPlugin.RESTORE_TASK_NAME
Expand Down

0 comments on commit d2c1903

Please sign in to comment.