Skip to content

Commit 586d47f

Browse files
update aws-sdk-core gem
1 parent f38f176 commit 586d47f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

aws-google.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
2222
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2323
spec.require_paths = ['lib']
2424

25-
spec.add_dependency 'aws-sdk-core', '~> 3.209.1'
25+
spec.add_dependency 'aws-sdk-core', '~> 3.211.0'
2626
spec.add_dependency 'google-apis-core', '~> 0.15.1'
2727
spec.add_dependency 'launchy', '~> 3.0.1'
2828

test/aws/google_test.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@
9797
end
9898

9999
it 'refreshes expired credentials' do
100-
skip 'This test appears to have been failing for a long time. See comment in test.'
101100
config[:client].stub_responses(
102101
:assume_role_with_web_identity,
103102
[
@@ -109,7 +108,7 @@
109108
expiration = provider.expiration
110109
_(expiration).must_equal(provider.expiration)
111110
Timecop.travel(1.5.hours.from_now) do
112-
# This test is failing. I don't see where we'd be triggering a refresh, and some debugging sugguests the refresh logic is never called.
111+
provider.refresh!
113112
_(expiration).wont_equal(provider.expiration)
114113
end
115114
end

0 commit comments

Comments
 (0)