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