diff options
author | Robert Guo <robert.guo@mongodb.com> | 2021-10-06 09:34:37 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-10-06 14:04:05 +0000 |
commit | de8b58214880e0b61d01fecb7e5d8b7abbdb8c27 (patch) | |
tree | c39bfcc51f98752c13d085e2e7d995d0122c1fd4 /buildscripts/resmokelib | |
parent | 04777b82b0e0f7f83b99f1c837816bc93ba4d23b (diff) | |
download | mongo-de8b58214880e0b61d01fecb7e5d8b7abbdb8c27.tar.gz |
SERVER-60487 fix test name for JSTest testcase
Diffstat (limited to 'buildscripts/resmokelib')
-rw-r--r-- | buildscripts/resmokelib/testing/testcases/jstest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/resmokelib/testing/testcases/jstest.py b/buildscripts/resmokelib/testing/testcases/jstest.py index b79cbb53d4f..78c98e642da 100644 --- a/buildscripts/resmokelib/testing/testcases/jstest.py +++ b/buildscripts/resmokelib/testing/testcases/jstest.py @@ -190,7 +190,7 @@ class JSTestCase(interface.TestCase, interface.UndoDBUtilsMixin): """Initialize the TestCase for running JS files.""" super().__init__(logger, self.TEST_KIND, js_filename) self.num_clients = JSTestCase.DEFAULT_CLIENT_NUM - self._builder = JSTestCaseBuilder(logger, js_filename, self.id, shell_executable, + self._builder = JSTestCaseBuilder(logger, js_filename, self.id(), shell_executable, shell_options) def configure( # pylint: disable=arguments-differ,keyword-arg-before-vararg |