From 8fabadfc674e22ff79e02c1bd1d909657c26571a Mon Sep 17 00:00:00 2001 From: negue Date: Mon, 19 Feb 2018 20:17:41 +0100 Subject: [PATCH] fix genericPurchase test (#10024) --- test/client/unit/specs/store/actions/shops.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/client/unit/specs/store/actions/shops.js b/test/client/unit/specs/store/actions/shops.js index 2d49f880a9..516bdaacdc 100644 --- a/test/client/unit/specs/store/actions/shops.js +++ b/test/client/unit/specs/store/actions/shops.js @@ -49,7 +49,7 @@ describe('shops actions', () => { quantity: 1, }); - expect(store.state.user.data.item.equipped.armor_rogue_1).to.equal(true); + expect(store.state.user.data.items.gear.equipped.armor).to.equal('armor_rogue_1'); }); }); });