Mercurial > p > roundup > code
diff test/test_init.py @ 1483:ca3e0e2320be
fixes to unit tests
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 28 Feb 2003 03:33:25 +0000 |
| parents | 1c5bc0e2ed7d |
| children | 96cd422532ef |
line wrap: on
line diff
--- a/test/test_init.py Thu Feb 27 11:08:26 2003 +0000 +++ b/test/test_init.py Fri Feb 28 03:33:25 2003 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: test_init.py,v 1.20 2002-09-24 01:59:44 richard Exp $ +# $Id: test_init.py,v 1.21 2003-02-28 03:33:25 richard Exp $ import unittest, os, shutil, errno, imp, sys @@ -43,7 +43,8 @@ ae = self.assertEqual # create the instance - init.install(self.dirname, 'classic', self.backend) + init.install(self.dirname, 'classic') + init.write_select_db(self.dirname, self.backend) init.initialise(self.dirname, 'sekrit') # check we can load the package
