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
Serialized output XML declaration includes inconsistent quotations. i.e "value" vs 'value'
"value"
'value'
Users that serialize into XML.
The serialized XML output is valid but uses inconsistent quotation within the file and is not consistent with the input file.
When serializing a OSCAL document node into XML.
OscalBindingContextTest.testLoadCatalogXml(@TempDir Path tempDir)
<?xml version='1.0' encoding='UTF-8'?> <catalog xmlns="http://csrc.nist.gov/ns/oscal/1.0" uuid="4cd70b73-a0be-4bf5-9cc6-6535dd251939"> <metadata> ...
<?xml version="1.0" encoding="UTF-8"?> <catalog xmlns="http://csrc.nist.gov/ns/oscal/1.0" uuid="4cd70b73-a0be-4bf5-9cc6-6535dd251939"> <metadata> ...
None
The text was updated successfully, but these errors were encountered:
Fix for usnistgov/liboscal-java#14.
1dbe509
5a4f571
88b52b7
david-waltermire
Successfully merging a pull request may close this issue.
Describe the bug
Serialized output XML declaration includes inconsistent quotations. i.e
"value"
vs'value'
Who is the bug affecting?
Users that serialize into XML.
What is affected by this bug?
The serialized XML output is valid but uses inconsistent quotation within the file and is not consistent with the input file.
When does this occur?
When serializing a OSCAL document node into XML.
How do we replicate the issue?
OscalBindingContextTest.testLoadCatalogXml(@TempDir Path tempDir)
to no longer delete the output.Output
Expected behavior (i.e. solution)
Other Comments
None
The text was updated successfully, but these errors were encountered: