From 08f12ac1634e13cd21cab013da640d95082a813b Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Fri, 11 Oct 2019 15:02:55 -0500 Subject: [PATCH] fix(test): correct px expectation --- test/client/unit/specs/components/avatar.vue.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/client/unit/specs/components/avatar.vue.test.js b/test/client/unit/specs/components/avatar.vue.test.js index 8de44ebb21..efebcda3f7 100644 --- a/test/client/unit/specs/components/avatar.vue.test.js +++ b/test/client/unit/specs/components/avatar.vue.test.js @@ -78,9 +78,9 @@ context('avatar.vue', () => { }; }); - it('defaults to 28px', () => { + it('defaults to 27px', () => { vm.avatarOnly = true; - expect(vm.paddingTop).to.equal('28px'); + expect(vm.paddingTop).to.equal('27px'); }); it('is 24px if user has a pet', () => {