Skip to content

Commit 0589bb9

Browse files
Update __TESTS__/unit/url/url.test.ts
1 parent 048bf85 commit 0589bb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

__TESTS__/unit/url/url.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ describe('Tests for URL configuration', () => {
101101
expect(url).toEqual(`https://res.cloudinary.com/demo/image/upload/sample?_i=abcde&_z=1234&_t=false`);
102102
});
103103

104-
it('Should include query params', function () {
104+
it('Should include query params passed as a string', function () {
105105
const image = createNewImage('sample', {cloudName: 'demo'}, {queryParams: '_i=abcde&_z=1234&_t=false'});
106106
const url = image.toURL();
107107
expect(url).toEqual(`https://res.cloudinary.com/demo/image/upload/sample?_i=abcde&_z=1234&_t=false`);

0 commit comments

Comments
 (0)