diff options
| author | Jesse Wilson <jessewilson@google.com> | 2011-01-13 15:53:53 -0800 |
|---|---|---|
| committer | Jesse Wilson <jessewilson@google.com> | 2011-01-13 15:58:33 -0800 |
| commit | dd596ab148987c385e898336c7e33c2245f8e81d (patch) | |
| tree | f2dc36326181d407ce3ef120a228c2ee48d8f82a /annotations/generate_annotated_java_files.py | |
| parent | 094ef67758c76f2331378a3805b1e6db8ada17fe (diff) | |
Fix another DOM test that had broken expectations for the number of results.
The input XML file looks something like this:
<foo> <a></a> <b></b> &c; </foo>
The &c; entity expands to <c></c> on the RI. On Android, it is ignored. That
behavior is known.
The results from the RI were 3 elements:
<a> <b> <c>
The results from Android were also 3 elements, but a different 3:
<foo> <a> <b>
With my recent fix, the result is what it should be for a system that doesn't
expand entities:
<a> <b>
I've adjusted the test to expect one fewer element. It now fails on the RI,
because we're not expecting the expanded entity.
http://b/3350005
Change-Id: I20ab5c0521d20075582c0038bcf6e9e15d50597f
Diffstat (limited to 'annotations/generate_annotated_java_files.py')
0 files changed, 0 insertions, 0 deletions
