Skip to content

Commit f510459

Browse files
authored
fix: BI-5971 explicit drop table on test exit (#1260)
1 parent 0d4cc49 commit f510459

File tree

1 file changed

+1
-2
lines changed
  • lib/dl_connector_ydb/dl_connector_ydb_tests/db/formula

1 file changed

+1
-2
lines changed

lib/dl_connector_ydb/dl_connector_ydb_tests/db/formula/base.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,7 @@ def make_ydb_data_table(
119119
try:
120120
yield table
121121
finally:
122-
# dbe.db.drop_table(table)
123-
pass
122+
dbe.db.drop_table(table)
124123

125124
@pytest.fixture(scope="function")
126125
def ydb_data_table_field_types_patch(self, monkeypatch):

0 commit comments

Comments
 (0)