mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 10:17:48 +00:00
Minor label cleanup.
This commit is contained in:
@@ -6722,7 +6722,7 @@
|
|||||||
assert.strictEqual(_.gt('def', 'abc'), true);
|
assert.strictEqual(_.gt('def', 'abc'), true);
|
||||||
});
|
});
|
||||||
|
|
||||||
QUnit.test('should return `false` if `value` is less than or equal to `other`', function(assert) {
|
QUnit.test('should return `false` if `value` is <= `other`', function(assert) {
|
||||||
assert.expect(4);
|
assert.expect(4);
|
||||||
|
|
||||||
assert.strictEqual(_.gt(1, 3), false);
|
assert.strictEqual(_.gt(1, 3), false);
|
||||||
@@ -12202,7 +12202,7 @@
|
|||||||
QUnit.module('lodash.lte');
|
QUnit.module('lodash.lte');
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
QUnit.test('should return `true` if `value` is less than or equal to `other`', function(assert) {
|
QUnit.test('should return `true` if `value` is <= `other`', function(assert) {
|
||||||
assert.expect(4);
|
assert.expect(4);
|
||||||
|
|
||||||
assert.strictEqual(_.lte(1, 3), true);
|
assert.strictEqual(_.lte(1, 3), true);
|
||||||
|
|||||||
Reference in New Issue
Block a user