fix version number, final fixes

This commit is contained in:
holger krekel
2012-11-20 14:01:31 +01:00
parent 765b053984
commit b5955c5979
19 changed files with 144 additions and 144 deletions
+3 -3
View File
@@ -88,7 +88,7 @@ the ``self.db`` values in the traceback::
$ py.test test_unittest_db.py
=========================== test session starts ============================
platform linux2 -- Python 2.7.3 -- pytest-2.4.6
platform linux2 -- Python 2.7.3 -- pytest-2.3.4
collected 2 items
test_unittest_db.py FF
@@ -101,7 +101,7 @@ the ``self.db`` values in the traceback::
def test_method1(self):
assert hasattr(self, "db")
> assert 0, self.db # fail for demo purposes
E AssertionError: <conftest.DummyDB instance at 0x229e7e8>
E AssertionError: <conftest.DummyDB instance at 0x19be7e8>
test_unittest_db.py:9: AssertionError
___________________________ MyTest.test_method2 ____________________________
@@ -110,7 +110,7 @@ the ``self.db`` values in the traceback::
def test_method2(self):
> assert 0, self.db # fail for demo purposes
E AssertionError: <conftest.DummyDB instance at 0x229e7e8>
E AssertionError: <conftest.DummyDB instance at 0x19be7e8>
test_unittest_db.py:12: AssertionError
========================= 2 failed in 0.02 seconds =========================