Skip to content

Commit

Permalink
tests/object: Fix wallet annotation, it is not string
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Karpy <[email protected]>
  • Loading branch information
carpawell committed May 3, 2024
1 parent 6665cdc commit b4f4bf8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pytest_tests/tests/object/test_object_api_bearer.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
from helpers.test_control import expect_not_raises
from helpers.wellknown_acl import EACL_PUBLIC_READ_WRITE
from neofs_env.neofs_env_test_base import NeofsEnvTestBase
from neofs_testlib.env.env import NeoFSEnv
from neofs_testlib.env.env import NeoFSEnv, NodeWallet
from neofs_testlib.shell import Shell
from pytest import FixtureRequest


@pytest.fixture(scope="module")
@allure.title("Create bearer token for OTHERS with all operations allowed for all containers")
def bearer_token_file_all_allow(
default_wallet: str, client_shell: Shell, neofs_env: NeoFSEnv
default_wallet: NodeWallet, client_shell: Shell, neofs_env: NeoFSEnv
) -> str:
bearer = form_bearertoken_file(
default_wallet.path,
Expand All @@ -40,7 +40,7 @@ def bearer_token_file_all_allow(
@pytest.fixture(scope="module")
@allure.title("Create user container for bearer token usage")
def user_container(
default_wallet: str, client_shell: Shell, neofs_env: NeoFSEnv, request: FixtureRequest
default_wallet: NodeWallet, client_shell: Shell, neofs_env: NeoFSEnv, request: FixtureRequest
) -> StorageContainer:
container_id = create_container(
default_wallet.path,
Expand Down

0 comments on commit b4f4bf8

Please sign in to comment.