Add missing space

This commit is contained in:
Michal Čihař 2012-08-23 09:09:35 +02:00
parent 34fa04f865
commit 520b307b6f

View File

@ -128,7 +128,7 @@ class PMA_operations_test extends PHPUnit_Framework_TestCase
public function testPMA_getHtmlForTableRow(){
$this->assertEquals(
'<tr><td><label for="name">lable</label></td><td><input type="checkbox" name="name" id="name"value="1"/></td></tr>',
'<tr><td><label for="name">lable</label></td><td><input type="checkbox" name="name" id="name" value="1"/></td></tr>',
PMA_getHtmlForTableRow("name", "lable", "value")
);
}