From ab706abed58d8527200b4a2594ec4c2de99f5799 Mon Sep 17 00:00:00 2001 From: SabreCat Date: Wed, 15 Feb 2023 15:29:23 -0600 Subject: [PATCH] fix(test): remove outdated event expectation --- .../api/v3/integration/world-state/GET-world-state.test.js | 7 ------- 1 file changed, 7 deletions(-) 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);