File tree 1 file changed +1
-2
lines changed
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -3090,7 +3090,7 @@ describe('Parse.Query testing', () => {
3090
3090
it ( 'should not interfere with has when using select on field with undefined value #3999' , ( done ) => {
3091
3091
const obj1 = new Parse . Object ( 'TestObject' ) ;
3092
3092
const obj2 = new Parse . Object ( 'OtherObject' ) ;
3093
- obj2 . set ( 'otherField' , 'ok' ) ;
3093
+ obj2 . set ( 'otherField' , 1 ) ;
3094
3094
obj1 . set ( 'testPointerField' , obj2 ) ;
3095
3095
obj1 . set ( 'shouldBe' , true ) ;
3096
3096
const obj3 = new Parse . Object ( 'TestObject' ) ;
@@ -3102,7 +3102,6 @@ describe('Parse.Query testing', () => {
3102
3102
return query . find ( ) ;
3103
3103
} ) . then ( results => {
3104
3104
results . forEach ( result => {
3105
- console . log ( 'result: ' + JSON . stringify ( result ) ) ;
3106
3105
equal ( result . has ( 'testPointerField' ) , result . get ( 'shouldBe' ) ) ;
3107
3106
} ) ;
3108
3107
done ( ) ;
You can’t perform that action at this time.
0 commit comments