Skip to content

Commit 184a9eb

Browse files
authored
bug: Fix narwhals test covering new NestedType (#1836)
1 parent a06b3fe commit 184a9eb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/pytest/test_render_data_frame_tbl_data.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -366,11 +366,14 @@ def test_dtype_coverage():
366366
for dtype_name in dtype_names:
367367

368368
# Skip known types or imports that are not dtypes
369+
if dtype_name.endswith("Type"):
370+
# "DType",
371+
# "NestedType",
372+
# "NumericType",
373+
# "TemporalType",
374+
continue
369375
if dtype_name in (
370376
# narwhals
371-
"DType",
372-
"NumericType",
373-
"TemporalType",
374377
"Unknown",
375378
# typing import
376379
"Literal",

0 commit comments

Comments
 (0)