From 382c3265844e5fb2867c8f44bf46ebb97b257e2c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Sun, 31 Oct 2021 06:10:44 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_helpers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_helpers.py b/tests/test_helpers.py index a926445fb6e..fddd39899ed 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -746,6 +746,7 @@ def test_is_expected_content_type_non_application_json_private_suffix(): response_content_type=response_ct, expected_content_type=expected_ct ) + def test_is_expected_content_type_json_with_charset(): expected_ct = "application/json" response_ct = "application/json; charset=UTF-8" @@ -753,6 +754,7 @@ def test_is_expected_content_type_json_with_charset(): response_content_type=response_ct, expected_content_type=expected_ct ) + def test_is_expected_content_type_json_match_not_just_prefix(): expected_ct = "application/json" response_ct = "application/json-seq"