Skip to content

Commit

Permalink
fix: Remove trailing slash in dataplane-integ.spec.ts (#279)
Browse files Browse the repository at this point in the history
  • Loading branch information
adebayor123 authored Nov 1, 2022
1 parent 2efe362 commit d72e686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__smoke-test__/dataplane-integ.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
const ENDPOINT = process.env.ENDPOINT;
const MONITOR_ID = process.env.MONITOR;
const TEST_URL = getUrl(process.env.URL, process.env.VERSION);
const TARGET_URL = ENDPOINT + MONITOR_ID + '/';
const TARGET_URL = ENDPOINT + MONITOR_ID;

test('when web client calls PutRumEvents then the response code is 200', async ({
page
Expand Down

0 comments on commit d72e686

Please sign in to comment.