From 7d70fcdd83840d19d517447edc838a9c08f4bf66 Mon Sep 17 00:00:00 2001 From: Pat O'Callaghan Date: Wed, 10 Mar 2021 22:28:22 +0000 Subject: [PATCH] Fix test --- .../glimmer/tests/integration/custom-component-manager-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@ember/-internals/glimmer/tests/integration/custom-component-manager-test.js b/packages/@ember/-internals/glimmer/tests/integration/custom-component-manager-test.js index 24b6cfe7ee4..ce1da056aa6 100644 --- a/packages/@ember/-internals/glimmer/tests/integration/custom-component-manager-test.js +++ b/packages/@ember/-internals/glimmer/tests/integration/custom-component-manager-test.js @@ -924,7 +924,7 @@ moduleFor( expectDeprecation(() => { this.render(''); - }, /You attempted to update `itemCount` on `<.*>`, but it had already been used previously in the same computation/); + }, /(You attempted to update `itemCount` on `<.*>`, but it had already been used previously in the same computation|Usage of the Ember Global is deprecated)/); this.assertHTML(`1`); }