diff --git a/src/04-test-class/index.test.ts b/src/04-test-class/index.test.ts index 937490d82..f38ff95a6 100644 --- a/src/04-test-class/index.test.ts +++ b/src/04-test-class/index.test.ts @@ -34,11 +34,11 @@ describe('BankAccount', () => { // Write your tests here }); - test('should set new balance if fetchBalance returned number', async () => { + test('synchronizeBalance should set new balance if fetchBalance returned number', async () => { // Write your tests here }); - test('should throw SynchronizationFailedError if fetchBalance returned null', async () => { + test('synchronizeBalance should throw SynchronizationFailedError if fetchBalance returned null', async () => { // Write your tests here }); });