@@ -374,31 +374,6 @@ def test_19_related_fields(self):
374374 self .assertEqual (exporter .template_module_ids , template .module_ids )
375375 self .assertEqual (exporter .template_model_ids , template .model_ids )
376376
377- def test_20_export_with_binary_data (self ):
378- """Test export handles binary data correctly"""
379- # Create a partner with image (binary field)
380- self .env ["res.partner" ].create (
381- {
382- "name" : "Partner with Image" ,
383- "image_1920" : base64 .b64encode (b"fake_image_data" ),
384- }
385- )
386-
387- exporter = self .env ["spp.data.exporter" ].create (
388- {
389- "name" : "Test Binary Export" ,
390- "queue_job_minimum_size" : 10000 ,
391- }
392- )
393-
394- exporter .model_ids = [(6 , 0 , [self .test_model .id ])]
395- exporter .module_ids = [(6 , 0 , [self .test_module .id ])]
396- exporter .start_export ()
397-
398- # Export should complete successfully
399- self .assertEqual (exporter .state , "completed" )
400- self .assertTrue (exporter .export_file )
401-
402377 def test_21_export_empty_model (self ):
403378 """Test exporting a model with no records"""
404379 # Find or create a model with no records
0 commit comments