From 2e230439adb8344558d39d716008b5718232a7cb Mon Sep 17 00:00:00 2001 From: jacoobes Date: Tue, 15 Feb 2022 16:11:09 -0600 Subject: [PATCH] fix test suite --- tests/functions.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functions.test.ts b/tests/functions.test.ts index d11a026..e142bd2 100644 --- a/tests/functions.test.ts +++ b/tests/functions.test.ts @@ -1,4 +1,4 @@ -import { hasPrefix, fmt, isBot } from '../src/handler/utilities/messageHelpers'; +import { hasPrefix, fmt, isNotFromBot } from '../src/handler/utilities/messageHelpers'; describe('FUNCTIONS', () => { test('If hasPrefix is a function', () => { expect(typeof hasPrefix).toBe('function'); @@ -7,7 +7,7 @@ describe('FUNCTIONS', () => { expect(typeof fmt).toBe('function'); }); test('if isBot is a function', () => { - expect(typeof isBot).toBe('function'); + expect(typeof isNotFromBot).toBe('function'); }); });