Skip to content

Commit 5fdbf80

Browse files
committed
remove space
1 parent 3affe83 commit 5fdbf80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/cmab_client_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
it 'should return the variation id on success without retrying' do
5555
client = described_class.new(mock_http_client, nil, spy_logger)
5656
mock_response = double('response', status_code: 200, json: {'predictions' => [{'variationId' => 'abc123'}]})
57-
allow(mock_http_client).to receive(:post).and_return(mock_response)
57+
allow(mock_http_client).to receive(:post).and_return(mock_response)
5858
result = client.fetch_decision(rule_id, user_id, attributes, cmab_uuid)
5959
expect(result).to eq('abc123')
6060
expect(mock_http_client).to have_received(:post).with(

0 commit comments

Comments
 (0)