Skip to content

Commit 4bae5f2

Browse files
authored
fix(test): drop pipeline_config from invalid-priming-group test (#429)
## Summary - The backend now rejects `pipeline_config` + `priming_group_id` together as mutually exclusive
1 parent 92d80ca commit 4bae5f2

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)