diff --git a/test/store/index.js b/test/store/index.js index f8467e9e89..d8053367a9 100644 --- a/test/store/index.js +++ b/test/store/index.js @@ -184,7 +184,7 @@ describe('store', () => { assert.throws(() => { store.compute('a', ['b'], b => b + 1); store.compute('b', ['a'], a => a + 1); - }, /Cyclical dependency detected — a computed property cannot indirectly depend on itself/); + }, /Cyclical dependency detected/); }); }); });