mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Fixing issues with tests, and adding another test. Refs GH-57
This commit is contained in:
parent
50ec7e6fdf
commit
e53407c595
1 changed files with 3 additions and 3 deletions
|
@ -1932,9 +1932,9 @@ class FormHelperTest extends CakeTestCase {
|
|||
'type' => 'time',
|
||||
'selected' => '18:15'
|
||||
));
|
||||
|
||||
$this->assertPattern('#<option value="6"[^>]*>6</option>#', $result[1]);
|
||||
$this->assertPattern('#<option value="15"[^>]*>15</option>#', $result[1]);
|
||||
$this->assertPattern('#<option value="06"[^>]*>6</option>#', $result);
|
||||
$this->assertPattern('#<option value="15"[^>]*>15</option>#', $result);
|
||||
$this->assertPattern('#<option value="pm"[^>]*>pm</option>#', $result);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue