Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rest: skip Filename test case #780

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pytest_tests/tests/services/rest_gate/test_rest_gate.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,6 @@ def test_put_http_get_http(self, complex_object_size, simple_object_size, gw_par
@pytest.mark.parametrize(
"attributes",
[
{"Filename": "simple_obj_filename"},
{"File-Name": "simple obj filename"},
{"FileName": "simple obj filename"},
pytest.param(
Expand All @@ -344,6 +343,12 @@ def test_put_http_get_http(self, complex_object_size, simple_object_size, gw_par
reason="https://github.com/nspcc-dev/neofs-rest-gw/issues/195"
),
),
pytest.param(
{"Filename": "simple_obj_filename"},
marks=pytest.mark.skip(
reason="https://github.com/nspcc-dev/neofs-rest-gw/issues/168"
),
),
],
ids=["simple", "hyphen", "special", "percent"],
)
Expand Down
Loading