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 @@ -303,7 +303,7 @@ def test_parallel_unsupported_type_error(self) -> None:
303303 """Test that unsupported types raise TypeError in parallel mode."""
304304 class CustomType :
305305 pass
306-
306+
307307 data = {f"key{ i } " : CustomType () for i in range (15 )}
308308 with pytest .raises (TypeError , match = "Unsupported data type" ):
309309 dicttoxml .dicttoxml (data , parallel = True , workers = 4 )
@@ -318,7 +318,7 @@ def test_parallel_with_bool_values(self) -> None:
318318 def test_parallel_with_datetime_values (self ) -> None :
319319 """Test parallel processing with datetime values."""
320320 from datetime import datetime
321-
321+
322322 data = {f"key{ i } " : datetime (2024 , 1 , i + 1 ) for i in range (15 )}
323323 result_parallel = dicttoxml .dicttoxml (data , parallel = True , workers = 4 )
324324 result_serial = dicttoxml .dicttoxml (data , parallel = False )
You can’t perform that action at this time.
0 commit comments