Skip to content

Commit 6e37ea2

Browse files
author
Promise Xu
committed
no message
1 parent e0341dd commit 6e37ea2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spec/ParseQuery.spec.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3090,7 +3090,7 @@ describe('Parse.Query testing', () => {
30903090
it('should not interfere with has when using select on field with undefined value #3999', (done) => {
30913091
const obj1 = new Parse.Object('TestObject');
30923092
const obj2 = new Parse.Object('OtherObject');
3093-
obj2.set('otherField', 'ok');
3093+
obj2.set('otherField', 1);
30943094
obj1.set('testPointerField', obj2);
30953095
obj1.set('shouldBe', true);
30963096
const obj3 = new Parse.Object('TestObject');
@@ -3102,7 +3102,6 @@ describe('Parse.Query testing', () => {
31023102
return query.find();
31033103
}).then(results => {
31043104
results.forEach(result => {
3105-
console.log('result: ' + JSON.stringify(result));
31063105
equal(result.has('testPointerField'), result.get('shouldBe'));
31073106
});
31083107
done();

0 commit comments

Comments
 (0)