Skip to content

Commit 6b85b83

Browse files
author
Richard Jones
committed
add test for latest bugfix
1 parent 6f5f3a3 commit 6b85b83

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/db_test_base.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: db_test_base.py,v 1.37 2004-07-02 05:22:09 richard Exp $
18+
# $Id: db_test_base.py,v 1.38 2004-07-03 22:43:59 richard Exp $
1919

2020
import unittest, os, shutil, errno, imp, sys, time, pprint
2121

@@ -881,6 +881,8 @@ def testFilteringLink(self):
881881
ae(filt(None, {'assignedto': None}, ('+','id'), (None,None)), ['3','4'])
882882
ae(filt(None, {'assignedto': ['-1', None]}, ('+','id'), (None,None)),
883883
['3','4'])
884+
ae(filt(None, {'assignedto': ['1', None]}, ('+','id'), (None,None)),
885+
['1', '3','4'])
884886

885887
def testFilteringRetired(self):
886888
ae, filt = self.filteringSetup()

0 commit comments

Comments
 (0)