extend node_version range on applicable tests

This commit is contained in:
alexlamsl 2017-05-27 19:22:25 +08:00
parent c3f14a1481
commit fc30196472
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ dead_code_2_should_warn_strict: {
f(); f();
} }
expect_stdout: true expect_stdout: true
node_version: "=4" node_version: ">=4"
} }
dead_code_constant_boolean_should_warn_more: { dead_code_constant_boolean_should_warn_more: {

View File

@ -243,5 +243,5 @@ hoist_funs_strict: {
"5 'function' 'function'", "5 'function' 'function'",
"6 'undefined' 'function'", "6 'undefined' 'function'",
] ]
node_version: "=4" node_version: ">=4"
} }