@@ -33,8 +33,8 @@ public function testRangeQueryInclusive()
3333 );
3434
3535 $ this ->assertSame (
36- 'store:[" 45,-94" TO " 46,-93" ] ' ,
37- $ this ->helper ->rangeQuery ('store ' , '45,-94 ' , '46,-93 ' )
36+ 'store:[45,-94 TO 46,-93] ' ,
37+ $ this ->helper ->rangeQuery ('store ' , '45,-94 ' , '46,-93 ' , true , false )
3838 );
3939 }
4040
@@ -46,8 +46,8 @@ public function testRangeQueryExclusive()
4646 );
4747
4848 $ this ->assertSame (
49- 'store:{" 45,-94" TO " 46,-93" } ' ,
50- $ this ->helper ->rangeQuery ('store ' , '45,-94 ' , '46,-93 ' , false )
49+ 'store:{45,-94 TO 46,-93} ' ,
50+ $ this ->helper ->rangeQuery ('store ' , '45,-94 ' , '46,-93 ' , false , false )
5151 );
5252 }
5353
@@ -59,8 +59,8 @@ public function testRangeQueryInclusiveNullValues()
5959 );
6060
6161 $ this ->assertSame (
62- 'store:[* TO " 46,-93" ] ' ,
63- $ this ->helper ->rangeQuery ('store ' , null , '46,-93 ' )
62+ 'store:[* TO 46,-93] ' ,
63+ $ this ->helper ->rangeQuery ('store ' , null , '46,-93 ' , true , false )
6464 );
6565 }
6666
@@ -72,8 +72,8 @@ public function testRangeQueryExclusiveNullValues()
7272 );
7373
7474 $ this ->assertSame (
75- 'store:{* TO " 46,-93" } ' ,
76- $ this ->helper ->rangeQuery ('store ' , null , '46,-93 ' , false )
75+ 'store:{* TO 46,-93} ' ,
76+ $ this ->helper ->rangeQuery ('store ' , null , '46,-93 ' , false , false )
7777 );
7878 }
7979
0 commit comments