Wrong test order

Unit tests must be located after live objects:

Incorrect:

<object>
  <o name="foo">
    <o name="bar"/>
    <o name="+runs-program"/>
    <o name="boom"/>
  </o>
</object>

Correct:

<object>
  <o name="foo">
    <o name="bar"/>
    <o name="boom"/>
    <o name="+runs-program"/>
  </o>
</object>

Published on Wed Aug 26 07:19:15 UTC 2026.