我想了解我收到的回溯錯誤。見下文。瞭解回溯錯誤
Traceback (most recent call last):
File "test.py", line 291, in test_cache_in_function
self.assertTrue("sunset" in testfilestr,"Testing that the sunset request was cached")
AssertionError: Testing that the sunset request was cached
上述錯誤是否意味着「日落」不應該在緩存文件中?
這意味着字符串「sunset」不存在於'testfilestr'中,所以'assertTrue'失敗。 –
是的。你爲什麼不打印字符串? –
看看最初的try-catch塊。有兩個變量名稱:'saved_cache'和'CACHE_DICTION'。我猜測只有第二個是正確的。 –