aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t5541.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t5541.scala')
-rw-r--r--tests/pending/pos/t5541.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/pending/pos/t5541.scala b/tests/pending/pos/t5541.scala
index 90e5e4130..54e2b6518 100644
--- a/tests/pending/pos/t5541.scala
+++ b/tests/pending/pos/t5541.scala
@@ -36,9 +36,9 @@ class HASkipListView[ S <: Sys[ S ], A ]( private val l: HASkipList[ S, A ])( im
val szm = sz - 1
val keys = IndexedSeq.tabulate( sz ) { i =>
val key = n.key( i )
- (key, if( isRight && i == szm ) "M" else key.toString)
+ (key, if ( isRight && i == szm ) "M" else key.toString)
}
- val chbo = if( n.isLeaf ) None else {
+ val chbo = if ( n.isLeaf ) None else {
val nb = n.asBranch
Some( IndexedSeq.tabulate( sz )( i => buildBoxMap( nb.down( i ), isRight && (i == szm) )))
}