Skip to content

Commit 7b9b291

Browse files
committed
Remove test?
1 parent 01789cf commit 7b9b291

1 file changed

Lines changed: 0 additions & 15 deletions

File tree

tests/test_preconf.py

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -767,21 +767,6 @@ def test_tomlkit_unions(union_and_val: tuple, detailed_validation: bool):
767767
assert converter.structure(val, type) == val
768768

769769

770-
def test_tomlkit_dates():
771-
"""Native date objects from tomlkit are properly handled."""
772-
773-
@define
774-
class Event:
775-
event_date: date
776-
777-
toml_input = """
778-
event_date = 2025-12-16
779-
"""
780-
converter = tomlkit_make_converter()
781-
structured = converter.loads(toml_input, Event)
782-
assert structured.event_date == date(2025, 12, 16)
783-
784-
785770
@given(everythings(min_int=-9223372036854775808, max_int=18446744073709551615))
786771
def test_cbor2(everything: Everything):
787772
from cbor2 import dumps as cbor2_dumps

0 commit comments

Comments
 (0)