From 2b99bf7d03647a0bc3cba447d1c4d48f81612b45 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 10 Dec 2018 12:00:33 +0100 Subject: [PATCH] Update test/unit/features/options/lifecycle.spec.js fix typo on lifecycle event name (tx @posva) Co-Authored-By: therealpecus --- test/unit/features/options/lifecycle.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/features/options/lifecycle.spec.js b/test/unit/features/options/lifecycle.spec.js index 803db508733..ef274ed64c6 100644 --- a/test/unit/features/options/lifecycle.spec.js +++ b/test/unit/features/options/lifecycle.spec.js @@ -186,7 +186,7 @@ describe('Options lifecycle hooks', () => { vm.todos[0].done = true waitForUpdate(() => { expect(destroyed).toHaveBeenCalled() - expect(beforeUpdated).not.toHaveBeenCalled() + expect(beforeUpdate).not.toHaveBeenCalled() }).then(done) }) })