From 40e41342ce87c5571277422d2562d64241115f35 Mon Sep 17 00:00:00 2001 From: Ivan Lanin Date: Sun, 29 Jun 2014 21:14:10 +0700 Subject: [PATCH] Fix PHPCS --- tests/PhpWord/Tests/Element/SDTTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/PhpWord/Tests/Element/SDTTest.php b/tests/PhpWord/Tests/Element/SDTTest.php index aa7e89b3..8c7b4bf3 100644 --- a/tests/PhpWord/Tests/Element/SDTTest.php +++ b/tests/PhpWord/Tests/Element/SDTTest.php @@ -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());