Merge pull request #8 from owncloud/fix-7

refs #7 - fixing parameter order
This commit is contained in:
Daniel Molkentin
2012-11-22 23:38:59 -08:00

View File

@@ -40,7 +40,7 @@ An example for a simple test would be:
class TestAddTwo extends PHPUnit_Framework_TestCase {
public function testAddTwo(){
$this->assertEquals(addTwo(3), 5);
$this->assertEquals(5, addTwo(3));
}
}