提交 2bc0d427 编写于 作者: N Nicolargo

Correct an issue with test_003_plugins in Unitest for the Restful API (str instead od unicode)

上级 0127aa73
......@@ -91,7 +91,7 @@ class TestGlances(unittest.TestCase):
req = requests.get("%s/%s" % (URL, p))
self.assertTrue(req.ok)
if p in ('uptime', 'now'):
self.assertIsInstance(req.json(), str)
self.assertIsInstance(req.json(), unicode)
elif p in ('fs', 'monitor', 'percpu', 'sensors', 'alert', 'processlist',
'diskio', 'hddtemp', 'batpercent', 'network'):
self.assertIsInstance(req.json(), list)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册