From fbd609bbe37b7477a4e4d4cc5e485e78ff32e4af Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 5 May 2026 17:43:54 +0000 Subject: [PATCH] fix(test): drop pipeline_config from invalid-priming-group test The backend now rejects pipeline_config + priming_group_id as mutually exclusive (zuuul PR #6286), so the call no longer reaches the PG-lookup step that this test is designed to exercise. Removing pipeline_config restores the original 404 path. --- test/integration/test_groundlight.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/integration/test_groundlight.py b/test/integration/test_groundlight.py index 9dbeceaa..5fcd322d 100644 --- a/test/integration/test_groundlight.py +++ b/test/integration/test_groundlight.py @@ -985,14 +985,12 @@ def test_create_detector_with_invalid_priming_group_id(gl: Groundlight, detector """ name = detector_name("Test invalid priming") query = "Is there a dog?" - pipeline_config = "never-review" priming_group_id = "prgrp_nonexistent12345678901234567890" with pytest.raises(NotFoundException) as exc_info: gl.create_detector( name=name, query=query, - pipeline_config=pipeline_config, priming_group_id=priming_group_id, )