Skip to content
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

xml indentation issue #204

Open
ChristinaXu2017 opened this issue Oct 31, 2020 · 0 comments
Open

xml indentation issue #204

ChristinaXu2017 opened this issue Oct 31, 2020 · 0 comments

Comments

@ChristinaXu2017
Copy link
Contributor

Describe the bug
some qsignature unit test failed in Eclipse, because the output look like:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<qsignature>
    <files>
        <file coverage="4" id="1" name="/var/folders/df/jjbl15r1537868_k4cvl3wxjnt65fc/T/junit1426580825586087499/bespoke.qsig.vcf"/>
        <file coverage="7" id="2" name="/var/folders/df/jjbl15r1537868_k4cvl3wxjnt65fc/T/junit1426580825586087499/traditional.qsig.vcf"/>
    </files>
    ...
</qsignature>

To Reproduce
the reason is still under investigation, it more likely caused by XML writer library: javax.xml.transform.

Expected behavior
The expected output is without indent as run on the terminal by Gradle command

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<qsignature>
<files>
<file coverage="4" id="1" name="/var/folders/df/jjbl15r1537868_k4cvl3wxjnt65fc/T/junit2515560971504011429/bespoke.qsig.vcf"/>
<file coverage="7" id="2" name="/var/folders/df/jjbl15r1537868_k4cvl3wxjnt65fc/T/junit2515560971504011429/traditional.qsig.vcf"/>
</files>
...
</qsignature>

Desktop (please complete the following information):

  • OS: mac
  • Version java8

Additional context
Add any other context about the problem here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant