mol_regexp 0.0.410 → 0.0.411

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/node.test.js CHANGED
@@ -745,7 +745,7 @@ var $;
745
745
  return $mol_jsx("button", { title: props.hint }, target());
746
746
  };
747
747
  const dom = $mol_jsx(Button, { id: "foo", hint: "click me" }, () => 'hey!');
748
- $mol_assert_equal(dom.outerHTML, '<button title="click me" id="foo" class="Button">hey!</button>');
748
+ $mol_assert_equal(dom.outerHTML, '<button id="foo" title="click me" class="Button">hey!</button>');
749
749
  },
750
750
  'Nested guid generation'() {
751
751
  const Foo = () => {