File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 7878 ".priority" : " c" ,
7979 "aLetter" : " c"
8080 },
81- "zbool_true" : {
81+ "bool_true" : {
82+ ".priority" : true ,
8283 "aBoolean" : true
8384 },
84- "zbool_false" : {
85+ "bool_false" : {
86+ ".priority" : false ,
8587 "aBoolean" : false
8688 }
8789 },
Original file line number Diff line number Diff line change @@ -148,10 +148,10 @@ describe('MockQuery', function () {
148148
149149 it ( 'should work with boolean equalTo' , function ( ) {
150150 var spy = sinon . spy ( function ( snap ) {
151- expect ( _ . keys ( snap . val ( ) ) ) . eql ( [ 'zbool_true ' ] ) ;
151+ expect ( _ . keys ( snap . val ( ) ) ) . eql ( [ 'bool_true ' ] ) ;
152152 } ) ;
153153
154- ref . limitToLast ( 2 ) . equalTo ( true ) . on ( 'value' , spy ) ;
154+ ref . equalTo ( true ) . on ( 'value' , spy ) ;
155155 ref . flush ( ) ;
156156 expect ( spy ) . callCount ( 1 ) ;
157157 } ) ;
You can’t perform that action at this time.
0 commit comments