Skip to content

Commit

Permalink
Update hashes in tests
Browse files Browse the repository at this point in the history
Signed-off-by: Phil Ewels <[email protected]>
  • Loading branch information
ewels committed Dec 16, 2024
1 parent 94e845c commit b25862c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class CondaCacheTest extends Specification {
then:
1 * cache.isYamlFilePath(ENV.toString())
1 * cache.getCacheDir() >> BASE
prefix.toString() == "/conda/envs/env-${hash}-9416240708c49c4e627414b46a743664"
prefix.toString() == "/conda/envs/env-${hash}-64874f9dc9e7be788384bccef357a4f4"

cleanup:
folder?.deleteDir()
Expand Down Expand Up @@ -136,7 +136,7 @@ class CondaCacheTest extends Specification {
then:
1 * cache.isYamlFilePath(ENV.toString())
1 * cache.getCacheDir() >> BASE
prefix.toString() == "/conda/envs/env-${hash}-e7fafe40ca966397a2c0d9bed7181aa7"
prefix.toString() == "/conda/envs/env-${hash}-5b5c72e839d0c7dcabb5d06607c205fc"

}

Expand All @@ -161,7 +161,7 @@ class CondaCacheTest extends Specification {
1 * cache.isYamlFilePath(ENV.toString())
1 * cache.isTextFilePath(ENV.toString())
1 * cache.getCacheDir() >> BASE
prefix.toString() == "/conda/envs/env-${hash}-8a4aa7db8ddb8ce4eb4d450d4814a437"
prefix.toString() == "/conda/envs/env-${hash}-85371202d8820331ff19ae89c0595497"

cleanup:
folder?.deleteDir()
Expand Down

0 comments on commit b25862c

Please sign in to comment.