Skip to content

Commit fbd609b

Browse files
committed
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.
1 parent b35cca7 commit fbd609b

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

test/integration/test_groundlight.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -985,14 +985,12 @@ def test_create_detector_with_invalid_priming_group_id(gl: Groundlight, detector
985985
"""
986986
name = detector_name("Test invalid priming")
987987
query = "Is there a dog?"
988-
pipeline_config = "never-review"
989988
priming_group_id = "prgrp_nonexistent12345678901234567890"
990989

991990
with pytest.raises(NotFoundException) as exc_info:
992991
gl.create_detector(
993992
name=name,
994993
query=query,
995-
pipeline_config=pipeline_config,
996994
priming_group_id=priming_group_id,
997995
)
998996

0 commit comments

Comments
 (0)