Skip to content

Commit

Permalink
Fixed an incorrect message in the unittest framework.
Browse files Browse the repository at this point in the history
  • Loading branch information
KarsMulder committed Jan 20, 2021
1 parent f2ef283 commit 3c669e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittest/unittest.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def run_unittest(
}
input_device = evdev.UInput(capabilities)
if os.path.exists(path) or os.path.islink(path):
raise Exception(f"Cannot carry out the benchmark: required path {path} is already occupied.")
raise Exception(f"Cannot carry out the unittest: required path {path} is already occupied.")
os.symlink(input_device.device, path)
input_devices[input_device] = events

Expand Down

0 comments on commit 3c669e2

Please sign in to comment.