From 065dd92eb5bec9249cae84808e0cd5f885be8409 Mon Sep 17 00:00:00 2001 From: Connor Anderson Date: Fri, 5 May 2023 18:34:28 -0400 Subject: [PATCH] attempt to fix acceptance tests --- tests/acceptance/constants.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/acceptance/constants.js b/tests/acceptance/constants.js index 732dd952c..26a1f59c9 100644 --- a/tests/acceptance/constants.js +++ b/tests/acceptance/constants.js @@ -1,5 +1,5 @@ exports.PORT=9999; -exports.VERTICAL_SEARCH_URL_REGEX=/v2\/accounts\/me\/answers\/vertical\/query/; -exports.UNIVERSAL_SEARCH_URL_REGEX=/v2\/accounts\/me\/answers\/query/; -exports.UNIVERSAL_AUTOCOMPLETE_URL_REGEX=/v2\/accounts\/me\/answers\/autocomplete/; -exports.VERTICAL_AUTOCOMPLETE_URL_REGEX=/v2\/accounts\/me\/answers\/vertical\/autocomplete/; +exports.VERTICAL_SEARCH_URL_REGEX=/v2\/accounts\/me\/search\/vertical\/query/; +exports.UNIVERSAL_SEARCH_URL_REGEX=/v2\/accounts\/me\/search\/query/; +exports.UNIVERSAL_AUTOCOMPLETE_URL_REGEX=/v2\/accounts\/me\/search\/autocomplete/; +exports.VERTICAL_AUTOCOMPLETE_URL_REGEX=/v2\/accounts\/me\/search\/vertical\/autocomplete/;