Escape strings when formatting check messages (#1493)

This commit is contained in:
Charlie Marsh
2022-12-30 22:11:01 -05:00
committed by GitHub
parent 248447e139
commit 1e3cf87f67
3 changed files with 46 additions and 8 deletions

View File

@@ -51,3 +51,12 @@ secret == "s3cr3t"
token == "s3cr3t"
secrete == "s3cr3t"
password == safe == "s3cr3t"
if token == "1\n2":
pass
if token == "3\t4":
pass
if token == "5\r6":
pass