From b5a21bb4f9c33e44e9ef8e14e0ce52ae0467b25d Mon Sep 17 00:00:00 2001 From: Artem Udovichenko Date: Thu, 13 Oct 2022 18:57:12 +0300 Subject: [PATCH] Enable JSPrimitiveRefTest.StringCreate test Change-Id: Ib5bfbf61eca96bd7a5ed3460a833cbd1d4152955 --- tests/runtime/common/js_primitive_ref_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtime/common/js_primitive_ref_test.cpp b/tests/runtime/common/js_primitive_ref_test.cpp index 92c2adb9d..11509b15c 100644 --- a/tests/runtime/common/js_primitive_ref_test.cpp +++ b/tests/runtime/common/js_primitive_ref_test.cpp @@ -49,7 +49,7 @@ public: JSThread *thread; }; -TEST_F(JSPrimitiveRefTest, DISABLED_StringCreate) // issue #5368 +TEST_F(JSPrimitiveRefTest, StringCreate) { JSHandle hello(thread->GetEcmaVM()->GetFactory()->NewFromString("hello")); JSHandle str(JSPrimitiveRef::StringCreate(thread, hello)); -- Gitee