Rev 70: We accidentally redefined the same class name twice, so we weren't running a bunch of tests. in http://bazaar.launchpad.net/+branch/u1db

John Arbash Meinel john at arbash-meinel.com
Thu Oct 13 10:34:16 UTC 2011


At http://bazaar.launchpad.net/+branch/u1db

------------------------------------------------------------
revno: 70
revision-id: john at arbash-meinel.com-20111013103356-6zm4bv7ajekcz3cc
parent: john at arbash-meinel.com-20111012132528-c4txn5yyd2ezaa8j
committer: John Arbash Meinel <john at arbash-meinel.com>
branch nick: u1db
timestamp: Thu 2011-10-13 12:33:56 +0200
message:
  We accidentally redefined the same class name twice, so we weren't running a bunch of tests.
-------------- next part --------------
=== modified file 'u1db/tests/__init__.py'
--- a/u1db/tests/__init__.py	2011-09-09 17:48:30 +0000
+++ b/u1db/tests/__init__.py	2011-10-13 10:33:56 +0000
@@ -15,4 +15,4 @@
 """Test infrastructure for U1DB Client"""
 
 
-from unittest import TestCase
+from testtools import TestCase

=== modified file 'u1db/tests/test_backends.py'
--- a/u1db/tests/test_backends.py	2011-09-09 17:48:30 +0000
+++ b/u1db/tests/test_backends.py	2011-10-13 10:33:56 +0000
@@ -657,7 +657,7 @@
     pass
 
 
-class TestSQLiteDatabase(SQLiteDatabaseMixin, DatabaseSyncTests,
-                         tests.TestCase):
+class TestSQLiteDatabaseSync(SQLiteDatabaseMixin, DatabaseSyncTests,
+                             tests.TestCase):
     pass
 



More information about the bazaar-commits mailing list