From e7159e00f962872369cb17ed3bf40429ac1e8b14 Mon Sep 17 00:00:00 2001 From: Phillip Johnsen Date: Fri, 15 Apr 2016 22:21:27 +0200 Subject: [PATCH 1/2] Update test-assert.js --- test/parallel/test-assert.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/parallel/test-assert.js b/test/parallel/test-assert.js index 2f4b757f4ec43e..a5a89af8bacd38 100644 --- a/test/parallel/test-assert.js +++ b/test/parallel/test-assert.js @@ -17,6 +17,8 @@ assert.throws(makeBlock(a, false), a.AssertionError, 'ok(false)'); assert.doesNotThrow(makeBlock(a, true), a.AssertionError, 'ok(true)'); + + assert.doesNotThrow(makeBlock(a, 'test', 'ok(\'test\')')); assert.throws(makeBlock(a.ok, false), From 8cb204cb8ea163247032070cae4f2872acdc4982 Mon Sep 17 00:00:00 2001 From: Phillip Johnsen Date: Fri, 15 Apr 2016 22:21:44 +0200 Subject: [PATCH 2/2] Update test-async-wrap-propagate-parent.js --- test/parallel/test-async-wrap-propagate-parent.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/parallel/test-async-wrap-propagate-parent.js b/test/parallel/test-async-wrap-propagate-parent.js index 34a00c22eeeafd..d67e25cf1e51f0 100644 --- a/test/parallel/test-async-wrap-propagate-parent.js +++ b/test/parallel/test-async-wrap-propagate-parent.js @@ -11,6 +11,8 @@ const uidSymbol = Symbol('uid'); let cntr = 0; let client; + + function init(uid, type, parentUid, parentHandle) { this[uidSymbol] = uid;