Comment 93 for bug 1034928

Revision history for this message
Jim Cline (jcline-physics) wrote :

This bug is easy to fix. For example, it will be caused by a section like this:

    <test name="lang" compare="not_eq">
      <string>zh-cn</string>
      <string>zh-sg</string>
    </test>

The correct syntax would be

    <test name="lang" compare="not_eq">
      <string>zh-cn</string>
    </test>
    <test name="lang" compare="not_eq">
      <string>zh-sg</string>
    </test>