Skip to content
Snippets Groups Projects
Commit 6e41fd1d authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

MAINT: Remove debugging output

parent f8e283ae
No related branches found
No related tags found
2 merge requests!107Release v0.11.0,!106F gaps in int columns
Pipeline #52532 passed
......@@ -200,7 +200,6 @@ class TableImporterTest(unittest.TestCase):
assert df["float"].dtype == int
# strict = False by default, so this shouldn't raise an error
importer.check_datatype(df)
print(importer.datatypes)
# The types should be correct now.
assert df["a"].dtype == pd.StringDtype
assert df["float"].dtype == float
......@@ -369,7 +368,6 @@ class CSVImporterTest(TableImporterTest):
assert importer_strict.datatypes["float"] == float
with pytest.raises(DataInconsistencyError) as die:
df = importer_strict.read_file(tmpfile.name)
print(df)
assert "Integer column has NA values in column 1" in str(die.value)
# ... except when a nullable datatype is set explicitly
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment