diff --git a/pytest_tests/tests/services/rest_gate/test_rest_gate.py b/pytest_tests/tests/services/rest_gate/test_rest_gate.py index a57478ef6..d0a23309a 100644 --- a/pytest_tests/tests/services/rest_gate/test_rest_gate.py +++ b/pytest_tests/tests/services/rest_gate/test_rest_gate.py @@ -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( @@ -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"], )