Skip to content

Commit

Permalink
Merge pull request #1047 from znz/patch-1
Browse files Browse the repository at this point in the history
Remove redundant freeze
  • Loading branch information
bblimke committed Feb 5, 2024
2 parents 019aecc + 89324dc commit 6e78e31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/webmock/util/headers.rb
Expand Up @@ -6,9 +6,9 @@ module Util

class Headers

STANDARD_HEADER_DELIMITER = '-'.freeze
NONSTANDARD_HEADER_DELIMITER = '_'.freeze
JOIN = ', '.freeze
STANDARD_HEADER_DELIMITER = '-'
NONSTANDARD_HEADER_DELIMITER = '_'
JOIN = ', '

def self.normalize_headers(headers)
return nil unless headers
Expand Down

0 comments on commit 6e78e31

Please sign in to comment.