From 2b509dfe4eee0aed5426bfdcd2703d1e5f487d4b Mon Sep 17 00:00:00 2001 From: Ben Newman Date: Mon, 15 Feb 2016 13:57:27 -0500 Subject: [PATCH] Fix typo. --- test/tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tests.js b/test/tests.js index 9a1eb63..f9ab60c 100644 --- a/test/tests.js +++ b/test/tests.js @@ -74,7 +74,7 @@ describe("encoding and decoding", function () { assert.strictEqual(m2.get(m2), "self"); }); - typeof Map === "function" && + typeof Set === "function" && it("should work with Set objects", function () { var s1 = new Set; s1.add(s1);