fix(test): correct px expectation

This commit is contained in:
Sabe Jones 2019-10-11 15:02:55 -05:00
parent d079b52c63
commit 08f12ac163

View file

@ -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', () => {