diff options
| author | Ang Bel <anzelikabelotelova@Anzelikas-MacBook-Air.local> | 2024-08-27 17:00:04 +0100 |
|---|---|---|
| committer | Ellie <ecsymonds@gmail.com> | 2024-08-28 09:12:00 +0100 |
| commit | efab1eccd4e2f0a8069ff4f1c968807a9c1ce05f (patch) | |
| tree | 3d3a41536f00df517f598e04cb94cc080cb3f105 /tests | |
| parent | 8588d4b318d7732d33a59bc6c8b93870310668c5 (diff) | |
| download | de-project-bentley-efab1eccd4e2f0a8069ff4f1c968807a9c1ce05f.tar.gz de-project-bentley-efab1eccd4e2f0a8069ff4f1c968807a9c1ce05f.zip | |
test: transform refactoring - it now loads parquet files into s3 bucket
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_dataframes.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/tests/test_dataframes.py b/tests/test_dataframes.py index 70aefe8..adbb5ed 100644 --- a/tests/test_dataframes.py +++ b/tests/test_dataframes.py @@ -139,11 +139,7 @@ class TestCreateFactPayment: for col in list(result.columns): assert col in expected_cols for col in expected_cols: - if '_date' in col: - print(col) - assert result[col].dtype == 'datetime64[ns]' - if '_time' in col: - print(col) - assert result[col].dtype == 'O' #<< O for object - + if '_date' or '_time' in col: + assert result[col].dtype == 'O' +
\ No newline at end of file |
