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 cb5eeab commit 803ca2fCopy full SHA for 803ca2f
spec/mongoid/clients/factory_spec.rb
@@ -132,8 +132,8 @@
132
133
let(:config) do
134
{
135
- default: { hosts: [ "127.0.0.1:27017" ], database: database_id },
136
- secondary: { uri: "mongodb://127.0.0.1:27017,127.0.0.1:27018/mongoid_test" }
+ default: { hosts: [ "127.0.0.1:1234" ], database: database_id },
+ secondary: { uri: "mongodb://127.0.0.1:1234,127.0.0.1:5678/mongoid_test" }
137
}
138
end
139
@@ -162,7 +162,7 @@
162
163
164
it "sets the cluster's seeds" do
165
- expect(seeds).to eq([ "127.0.0.1:27017", "127.0.0.1:27018" ])
+ expect(seeds).to eq([ "127.0.0.1:1234", "127.0.0.1:5678" ])
166
167
168
0 commit comments