Hi Kevin, all, 2020-09-21, Kevin Laatz: > Changed script to explicitly use python3 only to avoid > maintaining python 2 and removed deprecation notice. > > Cc: Olivier Matz <olivier.m...@6wind.com> > > Signed-off-by: Louise Kilheeney <louise.kilhee...@intel.com> > Signed-off-by: Kevin Laatz <kevin.la...@intel.com> > Reviewed-by: Bruce Richardson <bruce.richard...@intel.com> [snip] > @@ -43,7 +38,7 @@ def runHistoryTest(child): > i = 0 > > # fill the history with numbers > - while i < history_size / 10: > + while i < int(history_size / 10): > # add 1 to prevent from parsing as octals > child.send("1" + str(i).zfill(8) + cmdline_test_data.ENTER) > # the app will simply print out the number
It would be better to use the integer division operator: // -- Robin