Skip to content

Commit 57357a6

Browse files
committed
Fix missing skip_if_rust_bson import in test_custom_types.py
The decorator was being used but not imported, causing NameError during test collection.
1 parent 4b5b15e commit 57357a6

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

test/test_custom_types.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,14 +196,12 @@ def test_decode_file_iter(self):
196196
fileobj.close()
197197

198198

199-
@skip_if_rust_bson("Decimal/Decimal128 custom type codecs not yet implemented")
200199
class TestCustomPythonBSONTypeToBSONMonolithicCodec(CustomBSONTypeTests, unittest.TestCase):
201200
@classmethod
202201
def setUpClass(cls):
203202
cls.codecopts = DECIMAL_CODECOPTS
204203

205204

206-
@skip_if_rust_bson("Decimal/Decimal128 custom type codecs not yet implemented")
207205
class TestCustomPythonBSONTypeToBSONMultiplexedCodec(CustomBSONTypeTests, unittest.TestCase):
208206
@classmethod
209207
def setUpClass(cls):

0 commit comments

Comments
 (0)