From a7036d33f3b0ac143afd7919d7fdb4ea4b0de8d3 Mon Sep 17 00:00:00 2001 From: Pat O'Callaghan Date: Wed, 17 Mar 2021 21:20:29 +0000 Subject: [PATCH] Change name of variable to be more accurate --- node-tests/addon-test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node-tests/addon-test.js b/node-tests/addon-test.js index 95580988..f33093ee 100644 --- a/node-tests/addon-test.js +++ b/node-tests/addon-test.js @@ -290,12 +290,12 @@ describe('ember-cli-babel', function() { it( "should not replace the imports with Ember Globals when using an ember-source version that supports it", co.wrap(function* () { - const POST_GLOBAL_RESOLVER_DEPRECATION_VERSION = "3.27.0"; + const POST_EMBER_MODULE_IMPORTS_VERSION = "3.27.0"; dependencies[ "ember-source" - ] = POST_GLOBAL_RESOLVER_DEPRECATION_VERSION; + ] = POST_EMBER_MODULE_IMPORTS_VERSION; input.write( - buildEmberSourceFixture(POST_GLOBAL_RESOLVER_DEPRECATION_VERSION) + buildEmberSourceFixture(POST_EMBER_MODULE_IMPORTS_VERSION) ); input.write({ "foo.js": `import Component from '@ember/component'; Component.extend()`,