From 568602147502bf6ecf2559e936a4681907b3f7f0 Mon Sep 17 00:00:00 2001 From: Nelson Jovel Date: Wed, 20 Nov 2024 15:34:24 -0800 Subject: [PATCH] chore: update format for enum in question.rb --- app/models/legacy/question.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/legacy/question.rb b/app/models/legacy/question.rb index d96fd4f3..c0a93efc 100644 --- a/app/models/legacy/question.rb +++ b/app/models/legacy/question.rb @@ -28,7 +28,7 @@ module Legacy enum :target_group, %i[unknown for_students for_teachers for_parents] def source - target_group.gsub('for_', '') + target_group.gsub("for_", "") end def options @@ -69,7 +69,7 @@ module Legacy end def normalized_text - text.gsub('[science/math/English/social studies]', '') + text.gsub("[science/math/English/social studies]", "") end end end