On 10/18/22 20:42, Shinichiro Kawasaki wrote: ...
Okay, I'll modify the lines as follows: if self.json_data['jobs'][0]['read']['io_kbytes'] != 128: self.passed = False Before the fix, the read io_kbytes was zero, so comparison with zero was enough to confirm the fix. But comparison with the file size is stricter and better.
Great! Vincent