Mercurial > p > roundup > code
changeset 7682:c9be8a3f96d9
bad update on my part. Merge Ralf's work in.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 25 Oct 2023 09:45:58 -0400 |
| parents | 9ceb85d9df32 (current diff) 25a03f1a8159 (diff) |
| children | b04e222501b8 |
| files | |
| diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/test/db_test_base.py Wed Oct 25 09:42:11 2023 -0400 +++ b/test/db_test_base.py Wed Oct 25 09:45:58 2023 -0400 @@ -2015,6 +2015,8 @@ ae(filt(None, {a: ['1','-1']}), ['1','3','4']) ae(filt(None, {a: ['1','-1']}, ('+',a)), ['3','4','1']) ae(filt(None, {a: ['2','-1']}, ('+',a)), ['3','4','2']) + ae(filt(None, {a: ['2','-1','-4']}, ('+',a)), ['3','4','2']) + ae(filt(None, {a: ['2','-1','-4','-2']}, ('+',a)), ['1']) ae(filt(None, {a: ['1','-2']}), ['2','3','4']) ae(filt(None, {a: ['1','-2']}, ('+',a)), ['3','4','2']) ae(filt(None, {a: ['-1','-2']}, ('+',a)), ['1','2'])
