From ecbe2dd1eac67badc928d9ab3208fe8abae24f42 Mon Sep 17 00:00:00 2001 From: Azamat Date: Mon, 26 Oct 2015 17:14:41 +0700 Subject: [PATCH] Fix typo in application.md (unit tests) --- src/guide/application.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/application.md b/src/guide/application.md index 6e179af5dc..033c4eb318 100644 --- a/src/guide/application.md +++ b/src/guide/application.md @@ -170,7 +170,7 @@ describe('my-component', function () { it('should set correct default data', function () { expect(typeof myComponent.data).toBe('function') var defaultData = myComponent.data() - expect(defaultData.message).toBe('hello!') + expect(defaultData.msg).toBe('hello!') }) }) ```