Skip to content

Commit c410354

Browse files
committed
fix test cov
1 parent 94f0aa6 commit c410354

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db_dtypes/json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def __init__(self, values) -> None:
8080
elif isinstance(values, pa.ChunkedArray):
8181
pa_data = values
8282
else:
83-
raise ValueError(f"Unsupported type '{type(values)}' for JSONArray")
83+
raise NotImplementedError(f"Unsupported type '{type(values)}' for JSONArray")
8484

8585
# Ensures compatibility with pandas version 1.5.3
8686
if hasattr(self, '_data'):

0 commit comments

Comments
 (0)