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:
Tobias Nießen 2023-08-15 13:55:34 +02:00 committed by GitHub
parent 1aeb48c975
commit 115f801ae4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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));