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!') }) }) ```