Просмотр исходного кода

make sure to cover $htmlOmitEndTag

smiley 10 лет назад
Родитель
Сommit
158999f9ad
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      tests/Output/StringTest.php

+ 1 - 0
tests/Output/StringTest.php

@@ -44,6 +44,7 @@ class StringTest extends \PHPUnit_Framework_TestCase{
 	 */
 	public function testStringOutput($data, $type, $expected){
 		$this->options->type = $type;
+		$this->options->htmlOmitEndTag = false;
 		$this->assertEquals($expected, (new QRCode($data, new QRString($this->options)))->output());
 	}