Skip to content

Commit 4d422d1

Browse files
Jeff DutilJeff Dutil
authored andcommitted
Fix spec.
1 parent 4ed211e commit 4d422d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/aws/session_store/dynamo_db/garbage_collection_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def collect_garbage
113113
dynamo_db_client.should_receive(:scan).
114114
exactly(1).times.and_return(scan_resp2)
115115
dynamo_db_client.should_receive(:scan).
116-
exactly(1).times.with(hash_including({:exclusive_start_key => scan_resp2.last_evaluated_key})).
116+
exactly(1).times.with(hash_including(exclusive_start_key: scan_resp2[:last_evaluated_key])).
117117
and_return(scan_resp3)
118118
dynamo_db_client.should_receive(:batch_write_item).
119119
exactly(3).times.and_return(write_resp1)

0 commit comments

Comments
 (0)