Mercurial > p > roundup > code
diff test/db_test_base.py @ 2689:9d044127c5eb
tracker.open() requires the 2nd argument - journal tag name
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Sun, 26 Sep 2004 13:25:55 +0000 |
| parents | 99bd8a4b8abf |
| children | c26716932ffe |
line wrap: on
line diff
--- a/test/db_test_base.py Sun Sep 26 13:16:40 2004 +0000 +++ b/test/db_test_base.py Sun Sep 26 13:25:55 2004 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: db_test_base.py,v 1.45 2004-09-26 12:17:42 a1s Exp $ +# $Id: db_test_base.py,v 1.46 2004-09-26 13:25:55 a1s Exp $ import unittest, os, shutil, errno, imp, sys, time, pprint @@ -1377,7 +1377,7 @@ tracker.init(password.Password('sekrit')) # and open the database - db = self.db = tracker.open() + db = self.db = tracker.open('test') # check the basics of the schema and initial data set l = db.priority.list()
