我目前正在嘗試在unittest中使用defaultdict
。 我這樣申明。聲明defaultdict的正確方法
dic_response = defaultdict(list)
dic_response['d']['DisplayStatusList'] = [{
'DisplayStatusID': 26,
'Name': 'To sell'
}]
它失敗
Traceback (most recent call last): File "/home/maazza/PycharmProjects/django_test/app_tester/tests.py", line 422, in test_save_display_status 'Name': 'To sell', TypeError: list indices must be integers, not str
我不知道什麼是錯的。
我知道這是舊的,但[mcve]會在這個問題上大有裨益。 –