From ef9f9b461e1fb9ef92f5450ff0a4dcbed68afc42 Mon Sep 17 00:00:00 2001 From: Mathew Robinson Date: Tue, 30 Jul 2019 09:33:19 -0400 Subject: SERVER-41177 Remove Javascript ScopedThread class --- jstests/noPassthrough/thread_args.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'jstests/noPassthrough/thread_args.js') diff --git a/jstests/noPassthrough/thread_args.js b/jstests/noPassthrough/thread_args.js index 03273d76af3..cb0f335c7cb 100644 --- a/jstests/noPassthrough/thread_args.js +++ b/jstests/noPassthrough/thread_args.js @@ -1,5 +1,5 @@ /** - * This test makes makes sure Thread and ScopedThread work with --enableJavaScriptProtection + * This test makes makes sure Thread works with --enableJavaScriptProtection */ (function() { 'use strict'; @@ -40,7 +40,6 @@ function testThread(threadType) { assert(thread.returnData()); } -// Test both Thread and ScopedThread +// Test the Thread class testThread(Thread); -testThread(ScopedThread); }()); -- cgit v1.2.1