|
52 | 52 | }) |
53 | 53 | .to_return(status: 200, body: splits) |
54 | 54 |
|
55 | | - fetch_options = { cache_control_headers: false, till: nil, till_rbs: nil, sets: ['set_1','set_2'] } |
| 55 | + fetch_options = { cache_control_headers: false, till: nil, sets: ['set_1','set_2'] } |
56 | 56 | returned_splits = splits_api.since(-1, -1, fetch_options) |
57 | 57 | expect(returned_splits[:segment_names]).to eq(Set.new(%w[demo employees])) |
58 | 58 |
|
|
72 | 72 | }) |
73 | 73 | .to_return(status: 414, body: splits) |
74 | 74 |
|
75 | | - fetch_options = { cache_control_headers: false, till: nil, till_rbs: nil, sets: ['set_1','set_2'] } |
| 75 | + fetch_options = { cache_control_headers: false, till: nil, sets: ['set_1','set_2'] } |
76 | 76 | captured = 0 |
77 | 77 | begin |
78 | 78 | returned_splits = splits_api.since(-1, -1, fetch_options) |
|
126 | 126 | }) |
127 | 127 | .to_return(status: 200, body: splits) |
128 | 128 |
|
129 | | - fetch_options = { cache_control_headers: false, till: 123_123, till_rbs: nil, sets: nil } |
| 129 | + fetch_options = { cache_control_headers: false, till: 123_123, sets: nil } |
130 | 130 | returned_splits = splits_api.since(-1, -1, fetch_options) |
131 | 131 | expect(returned_splits[:segment_names]).to eq(Set.new(%w[demo employees])) |
132 | 132 |
|
|
147 | 147 | }) |
148 | 148 | .to_return(status: 200, body: splits) |
149 | 149 |
|
150 | | - fetch_options = { cache_control_headers: true, till: nil, till_rbs: nil, sets: nil } |
| 150 | + fetch_options = { cache_control_headers: true, till: nil, sets: nil } |
151 | 151 | returned_splits = splits_api.since(-1, -1, fetch_options) |
152 | 152 | expect(returned_splits[:segment_names]).to eq(Set.new(%w[demo employees])) |
153 | 153 |
|
|
0 commit comments