aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_dataframes.py
diff options
context:
space:
mode:
authorAng Bel <anzelikabelotelova@Anzelikas-MacBook-Air.local>2024-08-27 17:00:04 +0100
committerAng Bel <anzelikabelotelova@Anzelikas-MacBook-Air.local>2024-08-27 17:00:04 +0100
commit1a145a36d524a785c821aafbdb3512c24be6c57e (patch)
tree822d2a621343cd2f3b1a6389f0ccf42bf69e63d6 /tests/test_dataframes.py
parent22df92bcce7ec2d9e713b9609ffdd604d207e713 (diff)
downloadde-project-bentley-1a145a36d524a785c821aafbdb3512c24be6c57e.tar.gz
de-project-bentley-1a145a36d524a785c821aafbdb3512c24be6c57e.zip
test: transform refactoring - it now loads parquet files into s3 bucket
Diffstat (limited to 'tests/test_dataframes.py')
-rw-r--r--tests/test_dataframes.py10
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
git.ajschof.me — hosted by ajschofield — powered by cgit