From c0256ea2757d7c60e7da1ccdae244f3f206a0c5f Mon Sep 17 00:00:00 2001 From: Federico Tedin Date: Thu, 6 Feb 2025 11:44:00 -0300 Subject: [PATCH] Replace legacy testing services --- config/samples/k6_v1alpha1_configmap.yaml | 2 +- e2e/test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/samples/k6_v1alpha1_configmap.yaml b/config/samples/k6_v1alpha1_configmap.yaml index 28a56341..1aa75a47 100644 --- a/config/samples/k6_v1alpha1_configmap.yaml +++ b/config/samples/k6_v1alpha1_configmap.yaml @@ -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, }); diff --git a/e2e/test.js b/e2e/test.js index 2405230e..1ea9d6db 100644 --- a/e2e/test.js +++ b/e2e/test.js @@ -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, });