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 9c59209 commit b5dbfe1Copy full SHA for b5dbfe1
spec/rest/client_spec.rb
@@ -26,7 +26,7 @@
26
expect(@client.auth_token).to eq('someToken')
27
expect(@client.http_client).to eq('someClient')
28
expect(@client.region).to eq('someRegion')
29
- expect(@client.edge).to eq('someEdge')
+ expect(@client.edge).to eq(nil)
30
expect(@client.logger).to eq('someLogger')
31
end
32
@@ -37,7 +37,7 @@
37
expect(@client.auth_token).to eq('myPassword')
38
expect(@client.http_client).to eq('myClient')
39
expect(@client.region).to eq('myRegion')
40
- expect(@client.edge).to eq('myEdge')
+ expect(@client.edge).to eq("myEdge")
41
expect(@client.logger).to eq('myLogger')
42
43
0 commit comments