We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ed211e commit 4d422d1Copy full SHA for 4d422d1
spec/aws/session_store/dynamo_db/garbage_collection_spec.rb
@@ -113,7 +113,7 @@ def collect_garbage
113
dynamo_db_client.should_receive(:scan).
114
exactly(1).times.and_return(scan_resp2)
115
116
- exactly(1).times.with(hash_including({:exclusive_start_key => scan_resp2.last_evaluated_key})).
+ exactly(1).times.with(hash_including(exclusive_start_key: scan_resp2[:last_evaluated_key])).
117
and_return(scan_resp3)
118
dynamo_db_client.should_receive(:batch_write_item).
119
exactly(3).times.and_return(write_resp1)
0 commit comments