diff options
author | shadchin <shadchin@yandex-team.com> | 2023-08-02 16:59:05 +0300 |
---|---|---|
committer | shadchin <shadchin@yandex-team.com> | 2023-08-02 16:59:05 +0300 |
commit | ab5a854041cc56c50c87309a424a8b71bf4dbe20 (patch) | |
tree | 6ec70b8b760ab019ef8bf857155c500e7f57a637 | |
parent | 47614c6616ffab4975a9ddbc5956166f9334061a (diff) | |
download | ydb-ab5a854041cc56c50c87309a424a8b71bf4dbe20.tar.gz |
Prepare ydb/tests to update pytest to 7.3.2
-rw-r--r-- | ydb/tests/functional/ydb_cli/test_ydb_backup.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ydb/tests/functional/ydb_cli/test_ydb_backup.py b/ydb/tests/functional/ydb_cli/test_ydb_backup.py index 3601d9c38e6..b3332565119 100644 --- a/ydb/tests/functional/ydb_cli/test_ydb_backup.py +++ b/ydb/tests/functional/ydb_cli/test_ydb_backup.py @@ -391,13 +391,13 @@ class TestRecursiveConsistent(BaseTestBackupInFiles): class TestSingleBackupRestore(BaseTestBackupInFiles): def test_single_table_with_data_backup_restore(self): - self.test_single_table_with_data_backup_restore_impl(False, False) - self.test_single_table_with_data_backup_restore_impl(False, True) - self.test_single_table_with_data_backup_restore_impl(True, False) - self.test_single_table_with_data_backup_restore_impl(True, True) + self._test_single_table_with_data_backup_restore_impl(False, False) + self._test_single_table_with_data_backup_restore_impl(False, True) + self._test_single_table_with_data_backup_restore_impl(True, False) + self._test_single_table_with_data_backup_restore_impl(True, True) @classmethod - def test_single_table_with_data_backup_restore_impl(self, use_bulk_upsert, not_null): + def _test_single_table_with_data_backup_restore_impl(self, use_bulk_upsert, not_null): self.driver.scheme_client.make_directory( '/Root/folder' ) |