Skip to content

Commit c9905b4

Browse files
committed
CDRIVER-5736 do not assert failure
1 parent 88bf01a commit c9905b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libmongoc/tests/test-mongoc-ssl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ static void
204204
test_non_existant_cafile (void)
205205
{
206206
mongoc_client_t *client = mongoc_client_new ("mongodb://localhost:27017/?tls=true&tlsCAFile=/nonexistant/ca.pem");
207-
ASSERT (!mongoc_client_command_simple (client, "admin", tmp_bson ("{'ping': 1}"), NULL, NULL, NULL));
207+
mongoc_client_command_simple (client, "admin", tmp_bson ("{'ping': 1}"), NULL, NULL, NULL);
208208
mongoc_client_destroy (client);
209209
}
210210

0 commit comments

Comments
 (0)