diff options
| author | Patricio Paez <pp@pp.com.mx> | 2012-12-13 06:59:34 -0600 |
|---|---|---|
| committer | Patricio Paez <pp@pp.com.mx> | 2012-12-13 06:59:34 -0600 |
| commit | 6d0328aa397b24189230c6938adcdde307dfba76 (patch) | |
| tree | c3a69dda4e375c2baee4a306c911ef9628d595fd /docs/tutorials/wiki/src/tests | |
| parent | ecc2bd253e56e6a15a80f593bd193653211c9b49 (diff) | |
| download | pyramid-6d0328aa397b24189230c6938adcdde307dfba76.tar.gz pyramid-6d0328aa397b24189230c6938adcdde307dfba76.tar.bz2 pyramid-6d0328aa397b24189230c6938adcdde307dfba76.zip | |
Make ZODB tutorial functional tests pass
- Synchronize with the changes in
pyramid_zodbdbconn in commit
64b0c468d4ae320d720d03d0cbc8e9a0b0e42f1f
Diffstat (limited to 'docs/tutorials/wiki/src/tests')
| -rw-r--r-- | docs/tutorials/wiki/src/tests/tutorial/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/wiki/src/tests/tutorial/tests.py b/docs/tutorials/wiki/src/tests/tutorial/tests.py index ff7ca4f33..c435a4519 100644 --- a/docs/tutorials/wiki/src/tests/tutorial/tests.py +++ b/docs/tutorials/wiki/src/tests/tutorial/tests.py @@ -143,7 +143,7 @@ class FunctionalTests(unittest.TestCase): 'pyramid.includes': ['pyramid_zodbconn', 'pyramid_tm'] } app = main({}, **settings) - self.db = app.registry.zodb_database + self.db = app.registry._zodb_databases[''] from webtest import TestApp self.testapp = TestApp(app) |
