Skip to content

Commit

Permalink
fix url tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ecoderat committed Feb 11, 2025
1 parent a124910 commit 3db95f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/url.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ describe('url Tests', () => {
}
];

testCases.forEach(({ description, expectedUrl }) => {
testCases.forEach(({ description, givenUrl, expectedUrl }) => {
it(description, () => {
const result = url(expectedUrl);
const result = url(givenUrl);
expect(result).toEqual(expectedUrl);
});
});
Expand Down

0 comments on commit 3db95f8

Please sign in to comment.