mirror of https://github.com/zulip/zulip.git
test_message_fetch: Clean up obsolete PGroonga bug workaround.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
831d086110
commit
d295da676b
|
@ -2032,13 +2032,9 @@ class GetOldMessagesTest(ZulipTestCase):
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
english_message[MATCH_TOPIC],
|
english_message[MATCH_TOPIC],
|
||||||
'english')
|
'english')
|
||||||
self.assertIn(
|
self.assertEqual(
|
||||||
english_message['match_content'],
|
english_message['match_content'],
|
||||||
# NOTE: The whitespace here is off due to a pgroonga bug.
|
'<p>I want to go to <span class="highlight">日本</span>!</p>')
|
||||||
# This bug is a pgroonga regression and according to one of
|
|
||||||
# the author, this should be fixed in its next release.
|
|
||||||
['<p>I want to go to <span class="highlight">日本</span>!</p>', # This is correct.
|
|
||||||
'<p>I want to go to<span class="highlight"> 日本</span>!</p>'])
|
|
||||||
|
|
||||||
# Should not crash when multiple search operands are present
|
# Should not crash when multiple search operands are present
|
||||||
multi_search_narrow = [
|
multi_search_narrow = [
|
||||||
|
|
Loading…
Reference in New Issue