From 8ffb3ab3c4a064fdedfaa5e74239eb67223f8d3c Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 8 Feb 2013 19:04:02 -0800 Subject: [PATCH] Simplify `_.unescape` unit test. Former-commit-id: 113ee8e94a5a6a7d72b4e39672c60d67342def49 --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 8f5ce9f8b..6200ff67b 100644 --- a/test/test.js +++ b/test/test.js @@ -2386,8 +2386,8 @@ QUnit.module('lodash.unescape'); (function() { - var escaped = '<h1>Moe's famous "death by chocolate" brownies & cake<\/h1>', - unescaped = '

Moe\'s famous "death by chocolate" brownies & cake<\/h1>'; + var escaped = '&<>"'\/', + unescaped = '&<>"\'\/'; test('should unescape entities in the correct order', function() { equal(_.unescape('&lt;'), '<');