Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dbittenbender committed Sep 27, 2023
1 parent 194020b commit a3b2614
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions search/tests/unit/proxy/test_es_proxy_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_es_search_format_response_1_resource(self) -> None:
resource_to_field_mapping=ElasticsearchProxyV2.RESOURCE_TO_MAPPING,
)
expected = SearchResponse(
msg="Success",
msg="{'table': 'Success', 'user': 'Success'}",
page_index=0,
results_per_page=10,
results={
Expand Down Expand Up @@ -85,7 +85,7 @@ def test_es_search_format_response_multiple_resources(self) -> None:
resource_to_field_mapping=ElasticsearchProxyV2.RESOURCE_TO_MAPPING,
)
expected = SearchResponse(
msg="Success",
msg="{'table': 'Success', 'user': 'Success', 'feature': 'Success'}",
page_index=0,
results_per_page=10,
results={
Expand Down Expand Up @@ -206,7 +206,7 @@ def test_format_response_with_highlighting(self) -> None:
resource_to_field_mapping=ElasticsearchProxyV2_1.RESOURCE_TO_MAPPING,
)
expected = SearchResponse(
msg="Success",
msg="{'table': 'Success'}",
page_index=0,
results_per_page=1,
results={
Expand Down

0 comments on commit a3b2614

Please sign in to comment.