[Bug 21339] New: error in function hat:purchase from xmod040a.xq

https://www.w3.org/Bugs/Public/show_bug.cgi?id=21339

            Bug ID: 21339
           Summary: error in function hat:purchase from xmod040a.xq
    Classification: Unclassified
           Product: XPath / XQuery / XSLT
           Version: Working drafts
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: XQuery 3 & XPath 3 Test Suite
          Assignee: oneil@saxonica.com
          Reporter: spungi@gmail.com
        QA Contact: public-qt-comments@w3.org

http://dev.w3.org/cvsweb/2011/QT3-test-suite/prod/SchemaImport/xmod040a.xq?rev=1.1;content-type=text%2Fplain

declare function hat:purchase ($x as hat:hatsize) as hat:date2003 {
<yr> { ('2003-06-30' cast as hat:date2003) }</yr>
};

should be corrected to:

declare function hat:purchase ($x as hat:hatsize) as hat:date2003 {
('2003-06-30' cast as hat:date2003)
};

in order to correct test cases 'qischema040' and 'qischema040a' from 
http://dev.w3.org/cvsweb/2011/QT3-test-suite/prod/SchemaImport.xml?rev=1.15;content-type=text%2Fplain
that are using the above mentioned function.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Tuesday, 19 March 2013 16:52:31 UTC