forked from TrueCloudLab/frostfs-testcases
Tests: fix in spelling
Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
This commit is contained in:
parent
b6cbd7c07c
commit
186091640f
1 changed files with 3 additions and 3 deletions
|
@ -31,7 +31,7 @@ check_nodes = []
|
||||||
|
|
||||||
@pytest.fixture
|
@pytest.fixture
|
||||||
@allure.title('Create container and pick the node with data')
|
@allure.title('Create container and pick the node with data')
|
||||||
def crate_container_and_pick_node(prepare_wallet_and_deposit):
|
def create_container_and_pick_node(prepare_wallet_and_deposit):
|
||||||
wallet = prepare_wallet_and_deposit
|
wallet = prepare_wallet_and_deposit
|
||||||
file_path = generate_file()
|
file_path = generate_file()
|
||||||
placement_rule = 'REP 1 IN X CBF 1 SELECT 1 FROM * AS X'
|
placement_rule = 'REP 1 IN X CBF 1 SELECT 1 FROM * AS X'
|
||||||
|
@ -316,11 +316,11 @@ def test_drop_object(prepare_wallet_and_deposit):
|
||||||
@pytest.mark.node_mgmt
|
@pytest.mark.node_mgmt
|
||||||
@pytest.mark.skip(reason='Need to clarify scenario')
|
@pytest.mark.skip(reason='Need to clarify scenario')
|
||||||
@allure.title('Control Operations with storage nodes')
|
@allure.title('Control Operations with storage nodes')
|
||||||
def test_shards(prepare_wallet_and_deposit, crate_container_and_pick_node):
|
def test_shards(prepare_wallet_and_deposit, create_container_and_pick_node):
|
||||||
wallet = prepare_wallet_and_deposit
|
wallet = prepare_wallet_and_deposit
|
||||||
file_path = generate_file()
|
file_path = generate_file()
|
||||||
|
|
||||||
cid, node_name = crate_container_and_pick_node
|
cid, node_name = create_container_and_pick_node
|
||||||
original_oid = put_object(wallet, file_path, cid)
|
original_oid = put_object(wallet, file_path, cid)
|
||||||
|
|
||||||
# for mode in ('read-only', 'degraded'):
|
# for mode in ('read-only', 'degraded'):
|
||||||
|
|
Loading…
Reference in a new issue