fix: Remove unnecessary flags.contributor property from user

Closes #7550
This commit is contained in:
Blade Barringer
2016-05-31 21:10:58 -05:00
parent c0d9c54c44
commit 52f0057c3d
4 changed files with 3 additions and 7 deletions
@@ -66,7 +66,6 @@ describe('PUT /heroes/:heroId', () => {
await hero.sync();
expect(hero.balance).to.equal(3 + 0.75); // 3+0.75 for first contrib level
expect(hero.contributor.level).to.equal(1);
expect(hero.flags.contributor).to.equal(true);
expect(hero.purchased.ads).to.equal(true);
expect(hero.auth.blocked).to.equal(true);
});
@@ -95,7 +94,6 @@ describe('PUT /heroes/:heroId', () => {
await hero.sync();
expect(hero.balance).to.equal(1); // 0+1 for sixth contrib level
expect(hero.contributor.level).to.equal(6);
expect(hero.flags.contributor).to.equal(true);
expect(hero.items.pets['Dragon-Hydra']).to.equal(5);
});