]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2274] editorial fix due to reviewer's suggestion
authorNaoki Kambe <kambe@jprs.co.jp>
Mon, 30 Sep 2013 09:14:49 +0000 (18:14 +0900)
committerNaoki Kambe <kambe@jprs.co.jp>
Mon, 30 Sep 2013 09:14:49 +0000 (18:14 +0900)
src/bin/xfrin/tests/xfrin_test.py

index 117ca9fcb604004b35c386b71a6c26f12fe5b37a..9df2bdefaafcbdd3489ca7e262610be47f50f820 100644 (file)
@@ -2190,7 +2190,7 @@ class TestStatisticsXfrinConn(TestXfrinConnection):
                                           TEST_RRCLASS_STR,
                                           TEST_ZONE_NAME_STR,
                                           name)
-            msg = '%s is expected %s but actually %s' % (name, exp, act)
+            msg = '%s: expected %s but actually got %s' % (name, exp, act)
             self.assertEqual(exp, act, msg=msg)
 
     def _check_updated_statistics(self, expects):
@@ -2200,7 +2200,7 @@ class TestStatisticsXfrinConn(TestXfrinConnection):
             if name in expects:
                 exp = expects[name]
                 act = self.conn._counters.get(name)
-                msg = '%s is expected %s but actually %s' % (name, exp, act)
+                msg = '%s: expected %s but actually got %s' % (name, exp, act)
                 self.assertEqual(exp, act, msg=msg)
             else:
                 self.assertRaises(isc.cc.data.DataNotFoundError,