|
@@ -102,7 +102,7 @@ class SearchABTest(object):
|
|
|
:return:
|
|
|
"""
|
|
|
search_result = await SearchMethod().search_v0(
|
|
|
- text=",".join(cls.article_keys[0]),
|
|
|
+ text=cls.article_keys[0],
|
|
|
trace_id=cls.trace_id
|
|
|
)
|
|
|
if search_result:
|
|
@@ -117,7 +117,7 @@ class SearchABTest(object):
|
|
|
:return:
|
|
|
"""
|
|
|
search_result = await SearchMethod().search_v0(
|
|
|
- text=",".join(cls.article_keys[1]),
|
|
|
+ text=cls.article_keys[1],
|
|
|
trace_id=cls.trace_id
|
|
|
)
|
|
|
if search_result:
|
|
@@ -132,7 +132,7 @@ class SearchABTest(object):
|
|
|
:return:
|
|
|
"""
|
|
|
search_result = await SearchMethod().search_v0(
|
|
|
- text=",".join(cls.article_keys[3]),
|
|
|
+ text=cls.article_keys[3],
|
|
|
trace_id=cls.trace_id
|
|
|
)
|
|
|
if search_result:
|