eduni-1 test - DOCTYPE is missing in the expected result

Hello!

In the "eduni-1" test the expected result is missing DOCTYPE, which is 
present in the source:

EdUni/test/book.xml:
<!DOCTYPE book [
<!ATTLIST intro   id       ID    #IMPLIED>
<!ATTLIST include xmlns    CDATA #FIXED "http://www.w3.org/2001/XInclude">
]>
<book>
<intro id="intro">
You will enjoy this book.
</intro>
<include href="chap1.xml"/>
<include href="chap2.xml"/>
</book>

EdUni/result/book.xml:
<?xml version="1.0" encoding="utf-8"?>
<book>
<intro id="intro">
You will enjoy this book.
</intro>
<chapter id="chap1" xml:base="chap1.xml">
It was a dark and stormy night.
</chapter>
<chapter id="chap2" xml:base="chap2.xml">
And the all lived happily ever after.
</chapter>
</book>

-- 
Oleg Tkachenko
http://blog.tkachenko.com
Multiconn Technologies, Israel

Received on Monday, 1 November 2004 07:32:58 UTC