diff options
Diffstat (limited to 'fxjs/fxjs_v8_embeddertest.cpp')
-rw-r--r-- | fxjs/fxjs_v8_embeddertest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/fxjs_v8_embeddertest.cpp b/fxjs/fxjs_v8_embeddertest.cpp index 9e90663aa2..acc4366631 100644 --- a/fxjs/fxjs_v8_embeddertest.cpp +++ b/fxjs/fxjs_v8_embeddertest.cpp @@ -226,7 +226,7 @@ TEST_F(FXJSV8EmbedderTest, NewObject) { v8::HandleScope handle_scope(isolate()); v8::Context::Scope context_scope(GetV8Context()); - auto object = engine()->NewFxDynamicObj(-1); + auto object = engine()->NewObject(); ASSERT_FALSE(object.IsEmpty()); EXPECT_EQ(0u, engine()->GetObjectPropertyNames(object).size()); EXPECT_FALSE(engine()->GetObjectProperty(object, L"clams").IsEmpty()); |