Skip to content

Commit

Permalink
Allow unknown processor in injection test (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
figsoda authored Sep 9, 2023
1 parent b50db55 commit 2baf656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_files/injection.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
x = ~"uname -p"
print(x in ("arm\n", "x86_64\n"))
print(x in ("arm\n", "unknown\n", "x86_64\n"))

command = "uname -p"
_, _, rc = ~f"{command}" # This doesn't work
Expand Down

0 comments on commit 2baf656

Please sign in to comment.