From b8687dd94ced823fcb2ff19ec873e80e73fa2371 Mon Sep 17 00:00:00 2001 From: Durran Jordan Date: Thu, 22 Jul 2021 15:56:51 +0200 Subject: [PATCH] test: drop mock test response for 5.0 --- test/tools/mock.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/test/tools/mock.js b/test/tools/mock.js index c0024476a8..71b67823d7 100644 --- a/test/tools/mock.js +++ b/test/tools/mock.js @@ -10,11 +10,6 @@ const { const { ObjectId } = require('bson'); const { HostAddress } = require('../../src/utils'); -const DEFAULT_HELLO_50 = { - ...DEFAULT_ISMASTER_36, - serverId: new ObjectId() -}; - /** * @callback GetHostAddress * @returns {import('../../src/mongo_client').HostAddress} @@ -77,6 +72,5 @@ module.exports = { createServer, cleanup, DEFAULT_ISMASTER, - DEFAULT_ISMASTER_36, - DEFAULT_HELLO_50 + DEFAULT_ISMASTER_36 };