chore: allow logs to show error levels for ssh tunnel (#23536)

This commit is contained in:
Hugh A. Miles II
2023-03-30 18:23:22 -04:00
committed by GitHub
parent ce3ba67cf6
commit 81b32d1045
2 changed files with 4 additions and 2 deletions

View File

@@ -513,4 +513,4 @@ def test_import_parquet(mock_event_logger):
with test_db.get_sqla_engine_with_context() as engine:
data = engine.execute(f"SELECT * from {PARQUET_UPLOAD_TABLE}").fetchall()
assert data == [("john", 1), ("paul", 2), ("max", 3), ("bob", 4)]
assert data == [("max", 3), ("bob", 4), ("john", 1), ("paul", 2)]