Skip to content

Commit 37a8ef6

Browse files
authored
Merge pull request #4627 from github/dependabot/bundler/dependencies-f375ac6c38
2 parents 69c5da2 + 32808dd commit 37a8ef6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ GEM
282282
faraday (>= 1, < 3)
283283
sawyer (~> 0.9)
284284
parallel (1.26.3)
285-
parser (3.3.7.0)
285+
parser (3.3.7.1)
286286
ast (~> 2.4.1)
287287
racc
288288
pathutil (0.16.2)
@@ -300,7 +300,7 @@ GEM
300300
regexp_parser (2.10.0)
301301
rexml (3.4.0)
302302
rouge (3.30.0)
303-
rubocop (1.71.1)
303+
rubocop (1.71.2)
304304
json (~> 2.3)
305305
language_server-protocol (>= 3.17.0)
306306
parallel (~> 1.10)

test/test_helper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,15 +252,15 @@ def convert_from_real_to_query_safe(string)
252252
duplicate = string.dup.to_s
253253

254254
UNSAFE_TO_SAFE_STRING_MAPPINGS.keys.each_with_object(duplicate) do |key, new_string|
255-
new_string = new_string.gsub(key, UNSAFE_TO_SAFE_STRING_MAPPINGS[key])
255+
new_string.gsub(key, UNSAFE_TO_SAFE_STRING_MAPPINGS[key])
256256
end
257257
end
258258

259259
def convert_from_query_safe_to_real(string)
260260
duplicate = string.dup.to_s
261261

262262
SAFE_TO_UNSAFE_STRING_MAPPINGS.keys.each_with_object(duplicate) do |key, new_string|
263-
new_string = new_string.gsub(key, SAFE_TO_UNSAFE_STRING_MAPPINGS[key])
263+
new_string.gsub(key, SAFE_TO_UNSAFE_STRING_MAPPINGS[key])
264264
end
265265
end
266266

0 commit comments

Comments
 (0)