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 ae26ced commit 80d0c16Copy full SHA for 80d0c16
spec/event_builder_spec.rb
@@ -39,10 +39,9 @@
39
allow(Time).to receive(:now).and_return(time_now)
40
allow(SecureRandom).to receive(:uuid).and_return('a68cf1ad-0393-4e18-af87-efe8f01a7c9c')
41
42
- @expected_endpoints = {
43
- US: 'https://logx.optimizely.com/v1/events',
44
- EU: 'https://eu.logx.optimizely.com/v1/events'
45
- }
+ @expected_endpoints = {}
+ @expected_endpoints[:US] = 'https://logx.optimizely.com/v1/events'
+ @expected_endpoints[:EU] = 'https://eu.logx.optimizely.com/v1/events'
46
@expected_impression_params = {
47
account_id: '12001',
48
project_id: '111001',
0 commit comments