Skip to content

Commit 89fe2c2

Browse files
committed
CDRIVER-3815 remove test using geo haystack (#696)
1 parent a6af752 commit 89fe2c2

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

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

+7-2
Original file line numberDiff line numberDiff line change
@@ -1893,7 +1893,7 @@ test_index_compound (void)
18931893
}
18941894

18951895
static void
1896-
test_index_geo (void)
1896+
test_index_geo (void *unused)
18971897
{
18981898
mongoc_server_description_t *description;
18991899
mongoc_collection_t *collection;
@@ -6398,7 +6398,12 @@ test_collection_install (TestSuite *suite)
63986398
TestSuite_AddMockServerTest (
63996399
suite, "/Collection/index/collation/wire5", test_index_with_collation_ok);
64006400
TestSuite_AddLive (suite, "/Collection/index_compound", test_index_compound);
6401-
TestSuite_AddLive (suite, "/Collection/index_geo", test_index_geo);
6401+
TestSuite_AddFull (suite,
6402+
"/Collection/index_geo",
6403+
test_index_geo,
6404+
NULL,
6405+
NULL,
6406+
test_framework_skip_if_max_wire_version_more_than_9);
64026407
TestSuite_AddLive (suite, "/Collection/index_storage", test_index_storage);
64036408
TestSuite_AddLive (suite, "/Collection/regex", test_regex);
64046409
TestSuite_AddFull (suite,

0 commit comments

Comments
 (0)