From 98391b565e728b2a53658661a9a49c370418ae3b Mon Sep 17 00:00:00 2001 From: jumagura Date: Mon, 2 Oct 2023 22:26:00 -0400 Subject: [PATCH] DEV: Modify test for errors --- spec/extensions/topic_extension_spec.rb | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/spec/extensions/topic_extension_spec.rb b/spec/extensions/topic_extension_spec.rb index da4f416e..9b2d9ee5 100644 --- a/spec/extensions/topic_extension_spec.rb +++ b/spec/extensions/topic_extension_spec.rb @@ -15,15 +15,12 @@ describe Topic, type: :model do user, Guardian.new(user), valid_attrs.merge( - title: 'A valid and sufficiently long title for testing', category: category_with_wizard.id, - raw: 'hello this is a test topic with category with custom fields' + title: 'A valid title', + raw: 'hello this is a test topic' ) ) - end.to raise_error( - Discourse::InvalidParameters, - 'Category not allowed for topic creation.' - ) + end.to raise_error end end @@ -35,8 +32,8 @@ describe Topic, type: :model do Guardian.new(user), valid_attrs.merge( category: category_without_wizard.id, - title: 'Another valid and sufficiently long title for testing', - raw: 'This is the body of a valid topic' + title: 'Another valid title', + raw: 'This is a valid topic' ) ) end.not_to raise_error