diff options
| author | Lele Gaifax <lele@metapensiero.it> | 2007-12-16 10:59:06 +0000 |
|---|---|---|
| committer | Lele Gaifax <lele@metapensiero.it> | 2007-12-16 10:59:06 +0000 |
| commit | 8ce3f5d6997be2d28e88f2ed982454e7b4d6e3fa (patch) | |
| tree | 70b929c169a7cd91e2ea14a64f553246d0877367 | |
| parent | 6c179ff694b7908484455b36426c4cde496eb677 (diff) | |
| download | sqlalchemy-8ce3f5d6997be2d28e88f2ed982454e7b4d6e3fa.tar.gz | |
Fix bad example of Firebird test DB
Use an absolute path rather than a relative one, and the out-of-the-box
sysdba password. This is just to avoid confusing new testers, that should
add a db.firebird entry in their ~/satest.cfg anyway.
| -rw-r--r-- | test/testlib/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testlib/config.py b/test/testlib/config.py index 36db872eb..9644c96dc 100644 --- a/test/testlib/config.py +++ b/test/testlib/config.py @@ -20,7 +20,7 @@ mysql=mysql://scott:tiger@127.0.0.1:3306/test oracle=oracle://scott:tiger@127.0.0.1:1521 oracle8=oracle://scott:tiger@127.0.0.1:1521/?use_ansi=0 mssql=mssql://scott:tiger@SQUAWK\\SQLEXPRESS/test -firebird=firebird://sysdba:s@localhost/tmp/test.fdb +firebird=firebird://sysdba:masterkey@localhost//tmp/test.fdb maxdb=maxdb://MONA:RED@/maxdb1 """ |
