Skip to content

Commit 4699ffe

Browse files
committed
chore: fix convertToUploadcareQualityString test
1 parent bc5c2ed commit 4699ffe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/__tests__/convert-to-uploadcare-quality-string.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { convertToUploadcareQualityString } from '../utils/helpers';
22

33
describe('convertToUploadcareQualityString', () => {
4-
it('should map 0 to lightest', () => {
5-
expect(convertToUploadcareQualityString(0)).toBe('lightest');
4+
it('should map 1 to lightest', () => {
5+
expect(convertToUploadcareQualityString(1)).toBe('lightest');
66
});
77

88
it('should map 38 to lightest', () => {

0 commit comments

Comments
 (0)