From 40bb035b093e600732fbbb3693373dd9220543f1 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 10 Feb 2016 00:15:08 -0800 Subject: [PATCH] Minor label cleanup. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 5a3ae56ab..70fae5921 100644 --- a/test/test.js +++ b/test/test.js @@ -6722,7 +6722,7 @@ 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.strictEqual(_.gt(1, 3), false); @@ -12202,7 +12202,7 @@ QUnit.module('lodash.lte'); (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.strictEqual(_.lte(1, 3), true);