We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following code will break the test driver
test "inspect" { inspect!("\x00") }
which outputs:
failed: parse expect test result failed: {"loc": "/Users/caimeo/code/quickcheck/qc/qc_demo.mbt:209:3-209:19", "args_loc": "[\"/Users/caimeo/code/quickcheck/qc/qc_demo.mbt:209:12-209:18\", null, null, null]", "expect": "", "actual": "\x00"} Caused by: invalid escape at line 1 column 194
The text was updated successfully, but these errors were encountered:
This is because {"actual": "\x00"} is not a valid JSON. We need to fix "\x00".escape() or add a new escape method.
{"actual": "\x00"}
"\x00".escape()
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The following code will break the test driver
which outputs:
The text was updated successfully, but these errors were encountered: