Update test.py

This commit is contained in:
Kseniia Sumarokova 2022-09-29 13:03:03 +02:00 committed by GitHub
parent 0222abae21
commit 6270f513fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -118,6 +118,24 @@ def test_disks_app_func_cp(started_cluster):
)
assert "path1" in out
source.exec_in_container(
[
"/usr/bin/clickhouse",
"disks",
"--send-logs",
"--disk",
"test2",
"remove",
"path1",
]
)
out = source.exec_in_container(
["/usr/bin/clickhouse", "disks", "--send-logs", "--disk", "test2", "list", "."]
)
assert "path1" not in out
def test_disks_app_func_ln(started_cluster):