Skip to content

Commit

Permalink
Remove match from test
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeembrey committed Jul 31, 2024
1 parent 877824f commit 26d87a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe("path-to-regexp", () => {
describe.each(MATCH_TESTS)(
"match $path with $options",
({ path, options, tests }) => {
it.each(tests)("should match $input", ({ input, matches, expected }) => {
it.each(tests)("should match $input", ({ input, expected }) => {
const fn = match(path, options);
expect(fn(input)).toEqual(expected);
});
Expand Down

0 comments on commit 26d87a2

Please sign in to comment.