File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ def test_verify_capabilities_data_types() -> None:
132
132
assert len (exceptions ) == 1
133
133
assert isinstance (exceptions [0 ], UnsupportedDataType )
134
134
assert exceptions [0 ].column == "col2"
135
- assert exceptions [0 ].available_in_formats == [ "parquet" , "model" ]
135
+ assert set ( exceptions [0 ].available_in_formats ) == { "parquet" , "model" }
136
136
137
137
# exclude binary type if precision is set on column
138
138
schema_bin = Schema ("schema_bin" )
@@ -161,7 +161,7 @@ def test_verify_capabilities_data_types() -> None:
161
161
assert isinstance (exceptions [0 ], UnsupportedDataType )
162
162
assert exceptions [0 ].data_type == "binary(128)"
163
163
assert exceptions [0 ].column == "binary_2"
164
- assert exceptions [0 ].available_in_formats == [ "insert_values" , "model" ]
164
+ assert set ( exceptions [0 ].available_in_formats ) == { "insert_values" , "model" }
165
165
166
166
# check nested type on bigquery
167
167
from dlt .destinations import bigquery
You can’t perform that action at this time.
0 commit comments