Skip to content

Commit

Permalink
Changed test
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed Oct 26, 2013
1 parent 1d8d3ea commit afad7d2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/groovy/nextflow/util/CacheHelperTest.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ class CacheHelperTest extends Specification {
CacheHelper.hasher( [f1: 1, f2: 'String1', f3: true] ) .hash() == aMap
CacheHelper.hasher( ['A','B','C'] ).hash() == aList
CacheHelper.hasher(file).hash() == aFile

CacheHelper.hasher(['abc',123]).hash() == CacheHelper.hasher(['abc',123]).hash()
CacheHelper.hasher(['abc',123]).hash() != CacheHelper.hasher([123,'abc']).hash()
}


Expand Down

0 comments on commit afad7d2

Please sign in to comment.