Finally fixed test0rz.

This commit is contained in:
Jeremy Fincher 2004-02-17 05:18:58 +00:00
parent bef64f2b21
commit 32aa12b118

View File

@ -59,7 +59,7 @@ if sqlite is not None:
self._testOptions('a', ['a'])
self._testOptions('(a|b (c|d))', ['a', 'b c', 'b d'])
self._testOptions('(a|(b|)c)', ['a', 'bc', 'c'])
self._testOptions('(a|(b|)|(c|)d)', ['a', 'ab', 'cd', 'd'])
self._testOptions('(a(b|)|(c|)d)', ['a', 'ab', 'cd', 'd'])
self._testOptions('(a|)', ['a', ''])
self._testOptions('(|a)', ['a', ''])
self._testOptions('((a)|(b))', ['(a)', '(b)'])