Fix PHPCS

This commit is contained in:
Ivan Lanin 2014-06-29 21:14:10 +07:00
parent 415d9b95c4
commit 40e41342ce
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ class SDTTest extends \PHPUnit_Framework_TestCase
$type = $types[rand(0, 2)];
$value = rand(0, 100);
$object = new SDT($type);
$object->setValue($value);;
$object->setListItems($types);;
$object->setValue($value);
$object->setListItems($types);
$this->assertInstanceOf('PhpOffice\\PhpWord\\Element\\SDT', $object);
$this->assertEquals($type, $object->getType());