We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57cdb42 commit 378c0e9Copy full SHA for 378c0e9
1 file changed
tests/test_implementations/test_memory_sqlalchemy/api_test/test_get_one_api.py
@@ -94,6 +94,13 @@ def test_get_by_primary_key_with_false_char_query_param():
94
f'/test/{sample_primary_key}?char_value____str=string1&char_value____str=%tri%&char_value____str_____matching_pattern=case_sensitive',
95
headers=headers)
96
assert response.status_code == 200
97
+
98
99
+ response = client.get(
100
+ f'/test/{sample_primary_key}?char_value____str=string1&char_value____str=%Tri%&char_value____str_____matching_pattern=case_sensitive',
101
+ headers=headers)
102
+ assert response.status_code == 404
103
104
response = client.get(
105
f'/test/{sample_primary_key}?char_value____str=string1&char_value____str=%tsri%&char_value____str_____matching_pattern=case_sensitive',
106
0 commit comments