diff options
Diffstat (limited to 'tests/test_dataframes.py')
| -rw-r--r-- | tests/test_dataframes.py | 8 |
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" |
