Skip to content

Commit

Permalink
fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
zardus committed May 24, 2024
1 parent 4f12b3f commit 047fe35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chio.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def check_exe_basename(process, basename):

actual_basename = os.path.basename(os.path.realpath(shutil.which(basename)))
print_info(f"To pass the checks, the executable must be {actual_basename}.")
assert os.path.basename(process.exe()) == actual_basename, f"Executable must be '{basename}'. Yours is: {os.path.basename(process.exe())}"
assert os.path.basename(process.exe()) == actual_basename, f"Executable must be '{actual_basename}'. Yours is: {os.path.basename(process.exe())}"

def check_ipython(process):
print_test("We will now check that that the process is an interactive ipython instance.")
Expand Down

0 comments on commit 047fe35

Please sign in to comment.