DEV: Fix can't modify frozen string error when reporting server errors (#25033)

Follow up to 9d658591d6
This commit is contained in:
Alan Guo Xiang Tan 2023-12-26 11:10:11 +08:00 committed by GitHub
parent cfec408bc1
commit a69b386556
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -582,7 +582,7 @@ RSpec.configure do |config|
config.after :each do |example|
if example.exception && RspecErrorTracker.exceptions.present?
lines = (RSpec.current_example.metadata[:extra_failure_lines] ||= "")
lines = (RSpec.current_example.metadata[:extra_failure_lines] ||= +"")
lines << "~~~~~~~ SERVER EXCEPTIONS ~~~~~~~"