From f2dae588aa21975f173a0b5973123817f16fcace Mon Sep 17 00:00:00 2001 From: jdalton Date: Fri, 17 Apr 2015 08:27:14 -0700 Subject: [PATCH] Add test labels to help track down odd false fail. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 2d32f8afc..9714b7695 100644 --- a/test/test.js +++ b/test/test.js @@ -13440,11 +13440,11 @@ var oldId = (_.uniqueId(), _.uniqueId()), lodash = _.runInContext(); - ok(_.uniqueId() > oldId); + ok(_.uniqueId() > oldId, '_.uniqueId() > oldId'); var id = lodash.uniqueId(); strictEqual(id, '1'); - ok(id < oldId); + ok(id < oldId, 'id < oldId'); } else { skipTest(3);