Skip to content

Commit

Permalink
Lowercase true/false (okay, this is not Python)
Browse files Browse the repository at this point in the history
  • Loading branch information
nijel committed Oct 19, 2012
1 parent 1515c6c commit e5fda52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/classes/PMA_Table_test.php
Expand Up @@ -124,10 +124,10 @@ public function testValidateName($name, $result)
public function dataValidateName()
{
return array(
array('test', True),
array('te/st', False),
array('te.st', False),
array('te\\st', False),
array('test', true),
array('te/st', false),
array('te.st', false),
array('te\\st', false),
);
}
}
Expand Down

0 comments on commit e5fda52

Please sign in to comment.