From 352dd68b8bcaed270e02f505a26d25c8822b058e Mon Sep 17 00:00:00 2001 From: vashjs Date: Tue, 12 Nov 2024 10:13:20 +0100 Subject: [PATCH] fix text --- src/utils/helpers.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/helpers.test.js b/src/utils/helpers.test.js index 2bfa0422..1f4d7ba2 100644 --- a/src/utils/helpers.test.js +++ b/src/utils/helpers.test.js @@ -273,7 +273,7 @@ describe('getTransformedLogsFilterValue', () => { expect(result).toContain(JOB_STATUSES.REVIEWED_NO_MARC_RECORDS); }); - it('should remove REVIEWED_NO_MARC_RECORDS to the array if REVIEW_CHANGES is not present', () => { + it('should remove REVIEWED_NO_MARC_RECORDS from the array if REVIEW_CHANGES is not present', () => { const values = ['other_value']; const result = getTransformedLogsFilterValue(LOGS_FILTERS.STATUS, values); expect(result).not.toContain(JOB_STATUSES.REVIEWED_NO_MARC_RECORDS);