-
Notifications
You must be signed in to change notification settings - Fork 1
Fix array indentation of pretty xml #23
New issue
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
Conversation
Fix indentation on closing element of arrays.
|
||
self.assertEqual(output_xml.decode("utf8"), """<?xml version="1.0" ?> | ||
<llsd> | ||
<map> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This matches prior versions of LLSD: the starting element after <llsd>
is not indented.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #23 +/- ##
==========================================
+ Coverage 89.66% 89.67% +0.01%
==========================================
Files 6 6
Lines 861 862 +1
==========================================
+ Hits 772 773 +1
Misses 89 89 ☔ View full report in Codecov by Sentry. |
12573b9
to
3d68c44
Compare
Fix a missing EOL after </llsd> and add a roundtrip test of viewer autobuild xml.
3d68c44
to
da987c9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice...
Fix indentation on closing element of arrays and file EOL.
Closes #17