From 393a0b887b48e59c83f25a705f5fa79ef39c188f Mon Sep 17 00:00:00 2001 From: Gregor Aisch Date: Fri, 5 Apr 2013 11:59:47 +0200 Subject: [PATCH] tests --- test/test_persistence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_persistence.py b/test/test_persistence.py index 6cfd81b..b70f527 100644 --- a/test/test_persistence.py +++ b/test/test_persistence.py @@ -138,7 +138,7 @@ class TableTestCase(unittest.TestCase): ) assert res, 'update should return True' m = self.tbl.find_one(place='Berkeley', date=date) - assert m['temperature'] == -10, 'new temp. should be -10' + assert m['temperature'] == -10, 'new temp. should be -10 but is %d' % m['temperature'] def test_create_column(self): from sqlalchemy import FLOAT