我正在使用unittest在python中编写测试。
一次测试失败,我无法理解为什么。该错误被截断,其中显示[46chars]
和[493 chars]
。能够看到该陈述的全文是非常有帮助的。这可能吗?
这是错误:
nose.proxy.AssertionError: [call[46 chars]24.0)] != [call[46chars]24.0),
call(None, 'cluster.ec2-test-cluster1.[493 chars]4.0)]
这是测试:
expected = [call(None, 'cluster.ec2-test-cluster1.age.lower', 24.0)]
self.assertEqual(expected, my_mock.call_args_list)