From d42ad441c3cbb9e64930ad078a44c34d7b597f1b Mon Sep 17 00:00:00 2001 From: R-Palazzo Date: Thu, 7 Nov 2024 15:24:50 -0500 Subject: [PATCH] update tests --- .../integration/single_table/test_copulas.py | 20 +++++++++---------- .../data_processing/test_data_processor.py | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/tests/integration/single_table/test_copulas.py b/tests/integration/single_table/test_copulas.py index af6ac7234..96250ca67 100644 --- a/tests/integration/single_table/test_copulas.py +++ b/tests/integration/single_table/test_copulas.py @@ -348,16 +348,16 @@ def test_numerical_columns_gets_pii(): # Assert expected_sampled = pd.DataFrame({ 'id': [ - 1089619006166876142, - 8373046707753416652, - 9070705361670139280, - 7227045982112645011, - 3461931576753619633, - 1005734164466301683, - 3312031189447929384, - 82456842876428117, - 1819741328868365520, - 8019169766233150107, + 1982005, + 15967014, + 10406639, + 15230483, + 14028549, + 16499516, + 9244156, + 13145920, + 10106629, + 6297216, ], 'city': [ 'Danielfort', diff --git a/tests/unit/data_processing/test_data_processor.py b/tests/unit/data_processing/test_data_processor.py index f9bd39c75..e591d532c 100644 --- a/tests/unit/data_processing/test_data_processor.py +++ b/tests/unit/data_processing/test_data_processor.py @@ -1258,7 +1258,7 @@ def test__create_config(self): assert id_numeric_int_32_transformer.function_name == 'random_int' assert id_numeric_int_32_transformer.function_kwargs == { 'min': 0, - 'max': 2147483647, + 'max': 16777216, } id_column_transformer = config['transformers']['id_column']