Skip to content

Commit

Permalink
Update tests/sched_change_priority/tests/01-run.py
Browse files Browse the repository at this point in the history
Co-authored-by: Francisco <femolina@uc.cl>
  • Loading branch information
maribu and fjmolinas committed Jan 28, 2022
1 parent 034bdf1 commit 51ca128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sched_change_priority/tests/01-run.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def testfunc(child):
child.expect(r"Run \"nice (\d+) (\d+)\"\r\n")
pid = int(child.match.group(1))
prio = int(child.match.group(2))
child.sendline(f"nice {pid} {prio}")
child.sendline("nice {} {}".format(pid, prio))
child.expect_exact('[t3] Running again.')


Expand Down

0 comments on commit 51ca128

Please sign in to comment.