From dba1bcf97376aeaba5145de72ebd81709021f380 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 3 Jan 2016 18:50:03 -0600 Subject: [PATCH] Simplify `[[Prototype]]` test labels. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 39bbc4512..b8e7a5e37 100644 --- a/test/test.js +++ b/test/test.js @@ -20880,7 +20880,7 @@ assert.ok(_.transform(new Foo) instanceof Foo); }); - QUnit.test('should check that `object` is an object before using its `[[Prototype]]`', function(assert) { + QUnit.test('should ensure `object` is an object before using its `[[Prototype]]`', function(assert) { assert.expect(2); var Ctors = [Boolean, Boolean, Number, Number, Number, String, String], @@ -20902,7 +20902,7 @@ assert.deepEqual(actual, expected); }); - QUnit.test('should check that `object` constructor is a function before using its `[[Prototype]]`', function(assert) { + QUnit.test('should ensure `object` constructor is a function before using its `[[Prototype]]`', function(assert) { assert.expect(1); Foo.prototype.constructor = null;