Skip to content

Commit f016e41

Browse files
committed
CDRIVER-4539 fix test assert (#1223)
1 parent 2b370c8 commit f016e41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/libmongoc/tests/test-mongoc-server-description.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ test_server_description_connection_id (void)
432432
memset (&error, 0, sizeof (bson_error_t));
433433
mongoc_server_description_handle_hello (&sd, hello, 0 /* rtt */, &error);
434434
BSON_ASSERT (sd.type == MONGOC_SERVER_STANDALONE);
435-
BSON_ASSERT (sd.server_connection_id == 1);
435+
ASSERT_CMPINT64 (sd.server_connection_id, ==, 1);
436436
bson_destroy (hello);
437437
mongoc_server_description_cleanup (&sd);
438438
}

0 commit comments

Comments
 (0)