@@ -204,7 +204,6 @@ class WaveClientTest extends Specification {
204
204
! req. containerPlatform
205
205
! req. containerFile
206
206
! req. condaFile
207
- ! req. spackFile
208
207
! req. containerConfig. layers
209
208
! req. freeze
210
209
! req. dryRun
@@ -226,7 +225,6 @@ class WaveClientTest extends Specification {
226
225
! req. containerPlatform
227
226
! req. containerFile
228
227
! req. condaFile
229
- ! req. spackFile
230
228
! req. containerConfig. layers
231
229
! req. mirror
232
230
and :
@@ -249,7 +247,6 @@ class WaveClientTest extends Specification {
249
247
! req. containerPlatform
250
248
! req. containerFile
251
249
! req. condaFile
252
- ! req. spackFile
253
250
! req. containerConfig. layers
254
251
! req. freeze
255
252
and :
@@ -273,7 +270,6 @@ class WaveClientTest extends Specification {
273
270
! req. containerPlatform
274
271
! req. containerFile
275
272
! req. condaFile
276
- ! req. spackFile
277
273
! req. containerConfig. layers
278
274
and :
279
275
req. scanMode == ScanMode . required
@@ -297,7 +293,6 @@ class WaveClientTest extends Specification {
297
293
! req. containerPlatform
298
294
! req. containerFile
299
295
! req. condaFile
300
- ! req. spackFile
301
296
! req. containerConfig. layers
302
297
and :
303
298
req. dryRun
@@ -324,7 +319,6 @@ class WaveClientTest extends Specification {
324
319
and :
325
320
! req. containerFile
326
321
! req. condaFile
327
- ! req. spackFile
328
322
! req. containerConfig. layers
329
323
and :
330
324
req. fingerprint == ' d31044e6594126479585c0cdca15c15e'
@@ -343,7 +337,6 @@ class WaveClientTest extends Specification {
343
337
! req. containerImage
344
338
new String (req. containerFile. decodeBase64()) == DOCKERFILE
345
339
! req. condaFile
346
- ! req. spackFile
347
340
! req. containerConfig. layers
348
341
}
349
342
@@ -367,7 +360,6 @@ class WaveClientTest extends Specification {
367
360
! req. containerImage
368
361
new String (req. containerFile. decodeBase64()) == SINGULARITY_FILE
369
362
! req. condaFile
370
- ! req. spackFile
371
363
! req. containerConfig. layers
372
364
and :
373
365
req. format == ' sif'
@@ -387,7 +379,6 @@ class WaveClientTest extends Specification {
387
379
! req. containerImage
388
380
new String (req. containerFile. decodeBase64()) == DOCKERFILE
389
381
! req. condaFile
390
- ! req. spackFile
391
382
! req. containerConfig. layers
392
383
}
393
384
@@ -763,10 +754,6 @@ class WaveClientTest extends Specification {
763
754
then :
764
755
result == [dockerfile :' x' ]
765
756
766
- when :
767
- result = client. resolveConflicts([spack :' x' ,container :' z' ], [' conda' ,' spack' ])
768
- then :
769
- result == [spack :' x' ]
770
757
}
771
758
772
759
def ' should patch strategy for singularity' () {
@@ -780,10 +767,9 @@ class WaveClientTest extends Specification {
780
767
781
768
where :
782
769
STRATEGY | SING | EXPECTED
783
- [' conda' ,' dockerfile' , ' spack' ] | false | [' conda' ,' dockerfile' , ' spack' ]
784
- [' conda' ,' dockerfile' , ' spack' ] | true | [' conda' ,' singularityfile' , ' spack' ]
785
- [' conda' ,' dockerfile' , ' spack' ] | true | [' conda' ,' singularityfile' , ' spack' ]
786
- [' conda' ,' singularityfile' ,' dockerfile' , ' spack' ] | true | [' conda' ,' singularityfile' ,' dockerfile' , ' spack' ]
770
+ [' conda' ,' dockerfile' ] | false | [' conda' ,' dockerfile' ]
771
+ [' conda' ,' dockerfile' ] | true | [' conda' ,' singularityfile' ]
772
+ [' conda' ,' singularityfile' ,' dockerfile' ] | true | [' conda' ,' singularityfile' ,' dockerfile' ]
787
773
}
788
774
789
775
def ' should check conflicts' () {
0 commit comments