Brennan Chesley 12 лет назад
Родитель
Сommit
5b713cadde
1 измененных файлов с 1 добавлено и 4 удалено
  1. 1 4
      test/lib/pipeline/expressions/FieldPathExpression.js

+ 1 - 4
test/lib/pipeline/expressions/FieldPathExpression.js

@@ -73,11 +73,8 @@ module.exports = {
                             assert.deepEqual(results, []);
 			},
 
-<<<<<<< HEAD
-			"should return Array with null if field path is nested below Array containing null": function testNestedBelowArrayWithNull(){
-=======
+
 			"should return empty Array if field path is nested below Array containing null": function testNestedBelowArrayWithNull(){
->>>>>>> DEVOPS-258 ObjectExpression Tests passing with mongo 2.5 support
                             var vars = new Variables(1,{a:[null]}),
                                 fieldPath = FieldPathExpression.create('a.b'),
                                 results = fieldPath.evaluateInternal(vars);