From e75cfc89645769ddf3d260bb2f7097972b8578ff Mon Sep 17 00:00:00 2001 From: Tim Pansino Date: Mon, 13 May 2024 17:52:22 -0700 Subject: [PATCH] Fix query in e2e testing --- tests/python/test-specs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/python/test-specs.yml b/tests/python/test-specs.yml index 9787790..c309a51 100644 --- a/tests/python/test-specs.yml +++ b/tests/python/test-specs.yml @@ -7,8 +7,8 @@ scenarios: - curl --fail-with-body $(minikube service test-app-python-service --url -n default) tests: nrqls: - - query: FROM Transaction SELECT latest(something) AS 'start_time' WHERE appName = 'k8s-e2e-test-app-python' + - query: SELECT latest(duration) FROM Transaction WHERE appName = 'k8s-e2e-test-app-python' SINCE 10 minutes AGO expected_results: - - key: "start_time" + - key: "duration" lowerBoundedValue: 0.0 entities: []