aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_dataframes.py
diff options
context:
space:
mode:
authorbulve-ad <78788030+bulve-ad@users.noreply.github.com>2024-08-27 17:04:12 +0100
committerGitHub <noreply@github.com>2024-08-27 17:04:12 +0100
commit572617d1c33646f2c58fad0c2859835542b2829f (patch)
treef128e330b514a1d72fc8eeed915679adf1954aed /tests/test_dataframes.py
parent6761a7a8558079dc3107d69f2f3affc67e1577ae (diff)
parenta6ab5152a2294021d852fcc8c04f2e8eff931a45 (diff)
downloadde-project-bentley-572617d1c33646f2c58fad0c2859835542b2829f.tar.gz
de-project-bentley-572617d1c33646f2c58fad0c2859835542b2829f.zip
Merge pull request #101 from ajschofield/test/transform-helper-functions
test: transform refactoring - it now loads parquet files into s3 bucket
Diffstat (limited to 'tests/test_dataframes.py')
-rw-r--r--tests/test_dataframes.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/test_dataframes.py b/tests/test_dataframes.py
index bd81f73..c9ff43f 100644
--- a/tests/test_dataframes.py
+++ b/tests/test_dataframes.py
@@ -287,9 +287,5 @@ 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"
git.ajschof.me — hosted by ajschofield — powered by cgit