diff --git a/test/api/v3/integration/world-state/GET-world-state.test.js b/test/api/v3/integration/world-state/GET-world-state.test.js index ef2f9aca46..cec7086d6f 100644 --- a/test/api/v3/integration/world-state/GET-world-state.test.js +++ b/test/api/v3/integration/world-state/GET-world-state.test.js @@ -35,13 +35,6 @@ describe('GET /world-state', () => { }); }); - it('returns a string representing the current season for NPC sprites', async () => { - const res = await requester().get('/world-state'); - - expect(res).to.have.nested.property('npcImageSuffix'); - expect(res.npcImageSuffix).to.be.a('string'); - }); - context('no current event', () => { beforeEach(async () => { sinon.stub(worldState, 'getCurrentEvent').returns(null);