Skip to content

Commit

Permalink
test(instrumentation-express): pass correct type to app.get() (#2427)
Browse files Browse the repository at this point in the history
  • Loading branch information
pichlermarc authored Sep 10, 2024
1 parent e87ff9d commit 7448d37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ app.get(['/test/array1', /\/test\/array[2-9]/], (_req, res) => {
res.send({ response: 'response 3' });
});

app.get(['/test', 6, /test/], (_req, res) => {
app.get(['/test', '6', /test/], (_req, res) => {
res.send({ response: 'response 4' });
});

Expand Down

0 comments on commit 7448d37

Please sign in to comment.