diff --git a/_test/tests/inc/form/dropdownelement.test.php b/_test/tests/inc/form/dropdownelement.test.php index b3366ac1ed46fc7fbad251a619bbe75420655f0b..3aa0f16e4be1d10dfae4e1e7c6e223dd4e570c64 100644 --- a/_test/tests/inc/form/dropdownelement.test.php +++ b/_test/tests/inc/form/dropdownelement.test.php @@ -58,7 +58,10 @@ class form_dropdownelement_test extends DokuWikiTest { 'data-foo' => 'bar' ) ), - 'second' + 'second', + '3' => array( + 'label' => 'the label of the complex third option', + ) ); $form->addDropdown('foo', $options, 'label text'); @@ -70,7 +73,7 @@ class form_dropdownelement_test extends DokuWikiTest { $this->assertTrue($select->length == 1); $options = $pq->find('option'); - $this->assertTrue($options->length == 2); + $this->assertEquals(3, $options->length); $option = $pq->find('option#theID'); $this->assertEquals(1, $option->length);