From 84063e3e02a61f59c73a30cecf619bb4d008df69 Mon Sep 17 00:00:00 2001 From: Sean Craig Date: Tue, 16 May 2023 11:09:07 -0500 Subject: [PATCH] Cleaned up some lint in assign_hearing_tab_spec --- spec/models/queue_tabs/assign_hearing_tab_spec.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/spec/models/queue_tabs/assign_hearing_tab_spec.rb b/spec/models/queue_tabs/assign_hearing_tab_spec.rb index 95f3d7b5e7e..1572d2d34e8 100644 --- a/spec/models/queue_tabs/assign_hearing_tab_spec.rb +++ b/spec/models/queue_tabs/assign_hearing_tab_spec.rb @@ -196,7 +196,9 @@ it "returns correct options" do cache_ama_appeals - expect(subject.first[:value]).to eq(URI::DEFAULT_PARSER.escape(URI::DEFAULT_PARSER.escape(appeal.representative_name))) + expect(subject.first[:value]).to eq( + URI::DEFAULT_PARSER.escape(URI::DEFAULT_PARSER.escape(appeal.representative_name)) + ) expect(subject.first[:displayText]).to eq("#{appeal.representative_name} (2)") end end @@ -207,7 +209,9 @@ it "returns correct options" do cache_ama_appeals - expect(subject.first[:value]).to eq(URI::DEFAULT_PARSER.escape(URI::DEFAULT_PARSER.escape(hearing_location1.formatted_location))) + expect(subject.first[:value]).to eq( + URI::DEFAULT_PARSER.escape(URI::DEFAULT_PARSER.escape(hearing_location1.formatted_location)) + ) expect(subject.first[:displayText]).to eq("#{hearing_location1.formatted_location} (2)") end end