From a075bb552c9be6ebe6aae94f9f5207ace95bf374 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Mon, 27 Nov 2017 08:18:09 -0500 Subject: [PATCH] update test --- test/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/); }); }); });