Skip to content

Commit 13f5c97

Browse files
authored
chore: fixes the generic-synthetic-nodejs sample to use google.com (#57)
1 parent 116826b commit 13f5c97

File tree

1 file changed

+2
-2
lines changed
  • samples/generic-synthetic-nodejs

1 file changed

+2
-2
lines changed

samples/generic-synthetic-nodejs/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ functions.http('SyntheticFunction', runSyntheticHandler(async ({logger}) => {
2727
* If an error is thrown during execution, the synthetic test is considered failed.
2828
*/
2929
logger.info('Making an http request using synthetics');
30-
const url = 'https://www.googfasdffsdfle.com/'; // URL to send the request to
30+
const url = 'https://www.google.com/'; // URL to send the request to
3131
return await assert.doesNotReject(axios.get(url));
3232
}));
3333

34-
// [END monitoring_synthetic_monitoring_custom_script]
34+
// [END monitoring_synthetic_monitoring_custom_script]

0 commit comments

Comments
 (0)