Skip to content

Commit 97a264e

Browse files
danbevgibfahn
authored andcommitted
test: make CreateParams stack-allocated
PR-URL: #17366 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent a71f214 commit 97a264e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/cctest/node_test_fixture.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ class NodeTestFixture : public ::testing::Test {
5959
static uv_loop_t* CurrentLoop() { return &current_loop; }
6060

6161
protected:
62-
v8::Isolate::CreateParams params_;
6362
v8::Isolate* isolate_;
6463

6564
~NodeTestFixture() {
@@ -71,6 +70,7 @@ class NodeTestFixture : public ::testing::Test {
7170
platform_ = new node::NodePlatform(8, &current_loop, nullptr);
7271
v8::V8::InitializePlatform(platform_);
7372
v8::V8::Initialize();
73+
v8::Isolate::CreateParams params_;
7474
params_.array_buffer_allocator = allocator_.get();
7575
isolate_ = v8::Isolate::New(params_);
7676
}

0 commit comments

Comments
 (0)