Skip to content

Commit 0ece3e3

Browse files
committed
Remove all references to MMAP in tests
1 parent e7d12ff commit 0ece3e3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

test/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,7 @@ def require_no_load_balancer(self, func):
638638

639639
def require_change_streams(self, func):
640640
"""Run a test only if the server supports change streams."""
641+
return self.require_no_standalone(func)
641642

642643
def is_topology_type(self, topologies):
643644
unknown = set(topologies) - {

test/asynchronous/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ def require_no_load_balancer(self, func):
638638

639639
def require_change_streams(self, func):
640640
"""Run a test only if the server supports change streams."""
641-
return self.require_no_mmap(self.require_no_standalone(func))
641+
return self.require_no_standalone(func)
642642

643643
async def is_topology_type(self, topologies):
644644
unknown = set(topologies) - {

0 commit comments

Comments
 (0)