Skip to content

Commit 19ac095

Browse files
committed
2 parents ddba12a + b692bbe commit 19ac095

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

appengine/standard-static-files/rails/Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ GEM
9090
cuprite (0.14.3)
9191
capybara (~> 3.0)
9292
ferrum (~> 0.13.0)
93-
date (3.3.4)
93+
date (3.4.1)
9494
diff-lcs (1.5.0)
9595
erubi (1.12.0)
9696
execjs (2.8.1)
@@ -122,7 +122,7 @@ GEM
122122
mini_mime (1.1.5)
123123
mini_portile2 (2.8.8)
124124
minitest (5.22.2)
125-
net-imap (0.4.10)
125+
net-imap (0.4.20)
126126
date
127127
net-protocol
128128
net-pop (0.1.2)
@@ -218,7 +218,7 @@ GEM
218218
temple (0.10.2)
219219
thor (1.3.1)
220220
tilt (2.2.0)
221-
timeout (0.4.1)
221+
timeout (0.4.3)
222222
tzinfo (2.0.6)
223223
concurrent-ruby (~> 1.0)
224224
uglifier (4.2.0)

cdn/Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414

1515
source "https://rubygems.org"
1616

17+
gem "base64"
18+
1719
group :test do
1820
gem "rspec"
1921
gem "rspec_junit_formatter"

endpoints/getting-started/spec/endpoint_sample_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@
6767
error = JSON.parse last_response.body
6868

6969
expect(error["error"]).to eq 500
70-
expect(error["message"]).to include "unexpected token"
70+
expect(error["message"]).to include "unexpected"
7171
end
7272
end

functions/test/firebase/firestore_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
end
3434

3535
assert_includes err, "Function triggered by change to: #{source}"
36-
assert_match(/Old value: {"a"=>1}/, err)
37-
assert_match(/New value: {"b"=>2}/, err)
36+
assert_match(/Old value: \{"a"\s?=>\s?1\}/, err)
37+
assert_match(/New value: \{"b"\s?=>\s?2\}/, err)
3838
end
3939
end
4040
end

functions/test/firebase/rtdb_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
assert_includes err, "Function triggered by change to: #{source}"
3535
assert_includes err, "Admin?: false"
36-
assert_includes err, 'Delta: {"foo"=>"bar"}'
36+
assert_match(/Delta: \{"foo"\s?=>\s?"bar"\}/, err)
3737
end
3838
end
3939
end

media_cdn/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
source "https://rubygems.org"
1616

17+
gem "base64"
1718
gem "ed25519"
1819

1920
group :test do

0 commit comments

Comments
 (0)