@@ -547,7 +547,7 @@ def test_create_feedback_spam_detection_produce_to_kafka(
547
547
):
548
548
with Feature ({"organizations:user-feedback-spam-filter-actions" : True }):
549
549
550
- with Feature ({"organizations:user-feedback-spam-filter- ingest" : feature_flag }):
550
+ with Feature ({"organizations:user-feedback-spam-ingest" : feature_flag }):
551
551
event = {
552
552
"project_id" : default_project .id ,
553
553
"request" : {
@@ -623,7 +623,7 @@ def test_create_feedback_spam_detection_project_option_false(
623
623
):
624
624
default_project .update_option ("sentry:feedback_ai_spam_detection" , False )
625
625
626
- with Feature ({"organizations:user-feedback-spam-filter- ingest" : True }):
626
+ with Feature ({"organizations:user-feedback-spam-ingest" : True }):
627
627
event = {
628
628
"project_id" : default_project .id ,
629
629
"request" : {
@@ -686,7 +686,7 @@ def test_create_feedback_spam_detection_set_status_ignored(
686
686
with Feature (
687
687
{
688
688
"organizations:user-feedback-spam-filter-actions" : True ,
689
- "organizations:user-feedback-spam-filter- ingest" : True ,
689
+ "organizations:user-feedback-spam-ingest" : True ,
690
690
}
691
691
):
692
692
event = {
@@ -859,7 +859,7 @@ def test_create_feedback_filters_large_message(
859
859
features = (
860
860
{
861
861
"organizations:user-feedback-spam-filter-actions" : True ,
862
- "organizations:user-feedback-spam-filter- ingest" : True ,
862
+ "organizations:user-feedback-spam-ingest" : True ,
863
863
}
864
864
if spam_enabled
865
865
else {}
@@ -899,7 +899,7 @@ def test_create_feedback_evidence_has_spam(
899
899
monkeypatch .setattr ("sentry.feedback.usecases.create_feedback.is_spam" , lambda _ : True )
900
900
default_project .update_option ("sentry:feedback_ai_spam_detection" , True )
901
901
902
- with Feature ({"organizations:user-feedback-spam-filter- ingest" : True }):
902
+ with Feature ({"organizations:user-feedback-spam-ingest" : True }):
903
903
event = mock_feedback_event (default_project .id )
904
904
source = FeedbackCreationSource .NEW_FEEDBACK_ENVELOPE
905
905
create_feedback_issue (event , default_project .id , source )
0 commit comments