Skip to content

Commit df4a7cb

Browse files
committed
minor: add missing slash to uri in pool test
1 parent 4091829 commit df4a7cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/mongocxx/test/pool.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
#include <cstddef>
1919
#include <string>
2020

21-
#include <mongocxx/instance.hpp>
22-
#include <mongocxx/private/libmongoc.hh>
2321
#include <mongocxx/client.hpp>
22+
#include <mongocxx/instance.hpp>
2423
#include <mongocxx/options/ssl.hpp>
2524
#include <mongocxx/pool.hpp>
25+
#include <mongocxx/private/libmongoc.hh>
2626

2727
using namespace mongocxx;
2828

@@ -91,7 +91,7 @@ TEST_CASE(
9191
interposed = *opts;
9292
});
9393

94-
pool p{uri{"mongodb://mongodb.example.com:9999?ssl=true"},
94+
pool p{uri{"mongodb://mongodb.example.com:9999/?ssl=true"},
9595
options::client().ssl_opts(ssl_opts)};
9696

9797
REQUIRE(set_ssl_opts_called);

0 commit comments

Comments
 (0)