Parcourir la source

[TESTS] VerticalRuleLabels are now in an ol element, not div

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@18612 44c647ce-9c0f-0410-b52a-842ac1e357ba
matthew il y a 16 ans
Parent
commit
949fcc2a8a
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      tests/Zend/Dojo/View/Helper/VerticalSliderTest.php

+ 1 - 1
tests/Zend/Dojo/View/Helper/VerticalSliderTest.php

@@ -207,7 +207,7 @@ class Zend_Dojo_View_Helper_VerticalSliderTest extends PHPUnit_Framework_TestCas
     {
         $html = $this->getElement();
         $this->assertRegexp('/<div[^>]*(dojoType="dijit.form.VerticalRule")/', $html, $html);
-        $this->assertRegexp('/<div[^>]*(dojoType="dijit.form.VerticalRuleLabels")/', $html, $html);
+        $this->assertRegexp('/<ol[^>]*(dojoType="dijit.form.VerticalRuleLabels")/', $html, $html);
         $this->assertContains('leftDecoration', $html);
         $this->assertContains('rightDecoration', $html);
     }