Skip to content

Commit cce91ce

Browse files
authored
minor: fix readme typo (#373)
1 parent 008e368 commit cce91ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,9 +285,9 @@ cargo test --verbose # auth tests included
285285
#### Topology-specific tests
286286
Certain tests will only be run against certain topologies. To ensure that the entire test suite is run, make sure to run the tests separately against standalone, replicated, and sharded deployments.
287287
```bash
288-
export MONGODB_URI="mongodb://my-standalone-host:20717" # mongod running on 27017
288+
export MONGODB_URI="mongodb://my-standalone-host:27017" # mongod running on 27017
289289
cargo test --verbose
290-
export MONGODB_URI="mongodb://localhost:27018,localhost:27019,localhost:27020/?replSet=repl"
290+
export MONGODB_URI="mongodb://localhost:27018,localhost:27019,localhost:27020/?replicaSet=repl" # replicaset running on ports 27018, 27019, 27020 with name repl
291291
cargo test --verbose
292292
export MONGODB_URI="mongodb://localhost:27021" # mongos running on 27021
293293
cargo test --verbose

0 commit comments

Comments
 (0)