mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
test: fix assertion message in test_async.c
PR-URL: https://github.com/nodejs/node/pull/49146 Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
parent
1aeb48c975
commit
115f801ae4
@ -65,7 +65,7 @@ static napi_value Test(napi_env env, napi_callback_info info) {
|
||||
void* data;
|
||||
NODE_API_CALL(env,
|
||||
napi_get_cb_info(env, info, &argc, argv, &_this, &data));
|
||||
NODE_API_ASSERT(env, argc >= 3, "Not enough arguments, expected 2.");
|
||||
NODE_API_ASSERT(env, argc >= 3, "Not enough arguments, expected 3.");
|
||||
|
||||
napi_valuetype t;
|
||||
NODE_API_CALL(env, napi_typeof(env, argv[0], &t));
|
||||
|
Loading…
Reference in New Issue
Block a user