Skip to content

Commit

Permalink
Replace legacy testing services
Browse files Browse the repository at this point in the history
  • Loading branch information
federicotdn authored and yorugac committed Feb 6, 2025
1 parent 75741f2 commit c0256ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/samples/k6_v1alpha1_configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ data:
};
export default function () {
const result = http.get('https://test-api.k6.io/public/crocodiles/');
const result = http.get('https://quickpizza.grafana.com');
check(result, {
'http response status code is 200': result.status === 200,
});
Expand Down
2 changes: 1 addition & 1 deletion e2e/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export let options = {
};

export default function () {
const result = http.get('https://test-api.k6.io/public/crocodiles/');
const result = http.get('https://quickpizza.grafana.com');
check(result, {
'http response status code is 200': result.status === 200,
});
Expand Down

0 comments on commit c0256ea

Please sign in to comment.