From e4b33284f605115588a07262aa0cb59534091077 Mon Sep 17 00:00:00 2001 From: Arodab Date: Wed, 9 Oct 2024 21:31:41 -0300 Subject: [PATCH] fix tests --- tests/integration/commands/fish.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/commands/fish.test.ts b/tests/integration/commands/fish.test.ts index d9d978673d..ff69be38e1 100644 --- a/tests/integration/commands/fish.test.ts +++ b/tests/integration/commands/fish.test.ts @@ -9,7 +9,7 @@ describe('Fish Command', async () => { it('should handle insufficient fishing level', async () => { const user = await createTestUser(); - const res = await user.runCommand(fishCommand, { name: 'trout', quantity: 1 }); + const res = await user.runCommand(fishCommand, { name: 'trout/salmon', quantity: 1 }); expect(res).toEqual('<:minion:778418736180494347> Your minion needs 20 Fishing to fish Trout.'); });