better var names

This commit is contained in:
meejah 2018-03-19 12:03:58 -06:00
parent 30811d8818
commit c7cbb4a6b3

View File

@ -126,8 +126,8 @@ def create_test_queued_item(relpath_u, history=[]):
progress = mock.Mock()
progress.progress = 100.0
item = QueuedItem(relpath_u, progress, 1234)
for st, ts in history:
item.set_status(st, current_time=ts)
for the_status, timestamp in history:
item.set_status(the_status, current_time=timestamp)
return item