Skip to content

Commit

Permalink
adding seconds file for testSetValueChangeEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-andreyev committed Jan 8, 2019
1 parent f870a23 commit ee46a85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/Js/ChangeEventTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,15 @@ public function testSetValueChangeEvent($elementId, $valueForEmpty, $valueForFil

public function setValueChangeEventDataProvider()
{
$file = __DIR__ . '/../../web-fixtures/file.txt';
$file1 = __DIR__ . '/../../web-fixtures/file1.txt';
$file2 = __DIR__ . '/../../web-fixtures/file2.txt';

return array(
'input default' => array('the-input-default', 'from empty', 'from existing'),
'input text' => array('the-input-text', 'from empty', 'from existing'),
'input email' => array('the-email', 'from empty', 'from existing'),
'textarea' => array('the-textarea', 'from empty', 'from existing'),
'file' => array('the-file', $file, $file),
'file' => array('the-file', $file1, $file2),
'select' => array('the-select', '30'),
'radio' => array('the-radio-m', 'm'),
);
Expand Down
File renamed without changes.
Empty file added web-fixtures/file2.txt
Empty file.

0 comments on commit ee46a85

Please sign in to comment.