Skip to content

Commit

Permalink
MOTOR-1238: remove skip on PYTHON-3389 flagged tests (mongodb#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jibola authored Jan 30, 2024
1 parent da50b55 commit dc8b329
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions test/asyncio_tests/test_asyncio_change_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
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
Expand Down Expand Up @@ -182,7 +181,6 @@ async def test_close(self):
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}}])
Expand Down
2 changes: 0 additions & 2 deletions test/tornado_tests/test_motor_change_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -169,7 +168,6 @@ async def test_close(self):
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}}])
Expand Down

0 comments on commit dc8b329

Please sign in to comment.