@@ -230,7 +230,7 @@ def test__ensure_uniform_included_adds_uniform(caplog):
230230 _ensure_uniform_included (synthesizers )
231231
232232 # Assert
233- assert synthesizers == [GaussianCopulaSynthesizer , UniformSynthesizer ]
233+ assert synthesizers == [GaussianCopulaSynthesizer , ' UniformSynthesizer' ]
234234 assert any (expected_message in record .message for record in caplog .records )
235235
236236
@@ -701,7 +701,7 @@ def test_benchmark_single_table_aws(
701701 )
702702
703703 # Assert
704- assert UniformSynthesizer in synthesizers
704+ assert ' UniformSynthesizer' in synthesizers
705705 mock_validate_output_destination .assert_called_once_with (
706706 output_destination ,
707707 aws_keys = {
@@ -777,14 +777,14 @@ def test_benchmark_single_table_aws_synthesizers_none(
777777 compute_quality_score = True ,
778778 compute_diagnostic_score = True ,
779779 compute_privacy_score = True ,
780- synthesizers = [UniformSynthesizer ],
780+ synthesizers = [' UniformSynthesizer' ],
781781 detailed_results_folder = None ,
782782 custom_synthesizers = None ,
783783 s3_client = 's3_client_mock' ,
784784 )
785785 mock_run_on_aws .assert_called_once_with (
786786 output_destination = output_destination ,
787- synthesizers = [UniformSynthesizer ],
787+ synthesizers = [' UniformSynthesizer' ],
788788 s3_client = 's3_client_mock' ,
789789 job_args_list = 'job_args_list_mock' ,
790790 aws_access_key_id = '12345' ,
0 commit comments