From dcda307ecdaccf6857ab7ab1f81e2aba7f5a8480 Mon Sep 17 00:00:00 2001 From: Jarred-Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Fri, 30 May 2025 00:28:30 +0000 Subject: [PATCH] Sync Node.js tests with upstream --- test/js/node/test/parallel/test-http-same-map.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/js/node/test/parallel/test-http-same-map.js b/test/js/node/test/parallel/test-http-same-map.js index 56b1f14916..3d8d325ad7 100644 --- a/test/js/node/test/parallel/test-http-same-map.js +++ b/test/js/node/test/parallel/test-http-same-map.js @@ -1,12 +1,12 @@ +// Flags: --allow_natives_syntax 'use strict'; -// Flags: --allow-natives-syntax const common = require('../common'); const assert = require('assert'); const http = require('http'); const server = - http.createServer(onrequest).listen(0, common.localhostIPv4, () => next(0)); + http.createServer(onrequest).listen(0, common.localhostIPv4, () => next(0)); function onrequest(req, res) { res.end('ok');