We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f515f0 commit ede1957Copy full SHA for ede1957
1 file changed
tests/unit-ext/test-ext-handle-scope-nested.c
@@ -58,8 +58,8 @@ create_object_nested (int times)
58
59
// If leaves `escaped` uninitialized, there will be a style error on linux thrown by compiler
60
jerry_value_t escaped = 0;
61
- int status = jerryx_escape_handle (scope, obj, &escaped);
62
- TEST_ASSERT (status == 0);
+ jerryx_handle_scope_status status = jerryx_escape_handle (scope, obj, &escaped);
+ TEST_ASSERT (status == jerryx_handle_scope_ok);
63
TEST_ASSERT (scope->prelist_handle_count == 0);
64
TEST_ASSERT (scope->handle_ptr == NULL);
65
0 commit comments