Skip to content

Commit

Permalink
rm outer loop in andNot test
Browse files Browse the repository at this point in the history
  • Loading branch information
Petko Nikolov committed Mar 18, 2014
1 parent 0e61035 commit 5beba18
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,6 @@ class BitSetSuite extends FunSuite {
}

test( "andNot len(bitsetX) > len(bitsetY)" ) {
for( i <- 0 until 10000 ) {

val setBitsX = Seq( 0, 1, 3, 37, 38, 41, 85)
val setBitsY = Seq( 0, 2, 3, 37, 41, 48 )
val bitsetX = new BitSet(100)
Expand All @@ -153,6 +151,5 @@ class BitSetSuite extends FunSuite {
assert(bitsetDiff.nextSetBit(39) === 85)
assert(bitsetDiff.nextSetBit(85) === 85)
assert(bitsetDiff.nextSetBit(86) === -1)
}
}
}

0 comments on commit 5beba18

Please sign in to comment.