diff --git a/test/built-ins/Math/f16round/not-a-constructor.js b/test/built-ins/Math/f16round/not-a-constructor.js index 08bffccccb..661c33fbe3 100644 --- a/test/built-ins/Math/f16round/not-a-constructor.js +++ b/test/built-ins/Math/f16round/not-a-constructor.js @@ -12,5 +12,5 @@ features: [Float16Array, Reflect.construct] assert(!isConstructor(Math.f16round), "Math.f16round is not a constructor"); assert.throws(TypeError, function () { - new Math.fround(); + new Math.f16round(); });