Remove unneeded assertion from a _.xor chaining test.

This commit is contained in:
John-David Dalton
2015-12-27 16:22:12 -06:00
parent 1a0a9709f2
commit 223460bbd2

View File

@@ -21639,15 +21639,14 @@
});
QUnit.test('`_.' + methodName + '` should return a wrapped value when chaining', function(assert) {
assert.expect(2);
assert.expect(1);
if (!isNpm) {
var wrapped = _([1, 2, 3])[methodName]([5, 2, 1, 4]);
assert.ok(wrapped instanceof _);
assert.deepEqual(wrapped.value(), [3, 5, 4]);
}
else {
skipTest(assert, 2);
skipTest(assert);
}
});