Skip to content

Commit af64e1d

Browse files
hash not keywords again
1 parent 45d27f0 commit af64e1d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/stack_master/sso_group_id_finder_spec.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
group_id = 'abc-123-group-id'
2323

2424
response = double(group_id: group_id)
25-
expect(aws_client).to receive(:get_group_id).with(
25+
expect(aws_client).to receive(:get_group_id).with({
2626
identity_store_id: identity_store_id,
2727
alternate_identifier: {
2828
unique_attribute: {
2929
attribute_path: 'displayName',
3030
attribute_value: group_name
3131
}
3232
}
33-
).and_return(response)
33+
}).and_return(response)
3434

3535
expect(finder.find(reference)).to eq(group_id)
3636
end
@@ -60,15 +60,15 @@
6060
group_id = 'fallback-region-group-id'
6161
response = double(group_id: group_id)
6262

63-
expect(aws_client).to receive(:get_group_id).with(
63+
expect(aws_client).to receive(:get_group_id).with({
6464
identity_store_id: identity_store_id,
6565
alternate_identifier: {
6666
unique_attribute: {
6767
attribute_path: 'displayName',
6868
attribute_value: group_name
6969
}
7070
}
71-
).and_return(response)
71+
}).and_return(response)
7272

7373
expect(finder.find(reference_without_region)).to eq(group_id)
7474
end

0 commit comments

Comments
 (0)