MOTOR-1238: remove skip on PYTHON-3389 flagged tests (#252)

This commit is contained in:
Jib 2024-01-30 11:01:50 -05:00 committed by GitHub
parent da50b55d24
commit dc8b329adf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 4 deletions

View File

@ -18,7 +18,6 @@ import asyncio
import copy
import threading
import time
import unittest
from test import SkipTest, env
from test.asyncio_tests import AsyncIOTestCase, asyncio_test
from test.utils import get_async_test_timeout, wait_until
@ -182,7 +181,6 @@ class TestAsyncIOChangeStream(AsyncIOTestCase):
pass
@asyncio_test
@unittest.skip("Failing due to: https://jira.mongodb.org/browse/PYTHON-3389.")
async def test_missing_id(self):
coll = self.collection
change_stream = coll.watch([{"$project": {"_id": 0}}])

View File

@ -17,7 +17,6 @@
import copy
import threading
import time
import unittest
from test import SkipTest, env
from test.tornado_tests import MotorTest
from test.utils import get_async_test_timeout, wait_until
@ -169,7 +168,6 @@ class MotorChangeStreamTest(MotorTest):
pass
@gen_test
@unittest.skip("Failing due to: https://jira.mongodb.org/browse/PYTHON-3389.")
async def test_missing_id(self):
coll = self.collection
change_stream = coll.watch([{"$project": {"_id": 0}}])