Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: format NODE_API_CALL
  • Loading branch information
miguelmarcondesf committed Oct 16, 2025
commit 8866c025c1aac1a511259936fde41f7e9de818d4
6 changes: 3 additions & 3 deletions test/js-native-api/test_object/test_object.c
Original file line number Diff line number Diff line change
Expand Up @@ -743,9 +743,9 @@ static napi_value TestCreateObjectWithPropertiesEmpty(napi_env env,
napi_value result;

napi_value null_prototype;
NODE_API_CALL(env,
napi_create_object_with_properties(
env, NULL, NULL, NULL, 0, &result));
NODE_API_CALL(
env,
napi_create_object_with_properties(env, NULL, NULL, NULL, 0, &result));

return result;
}
Expand Down
Loading