1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-19 12:00:55 +01:00

Update doc example.

This commit is contained in:
epriestley 2011-08-03 09:16:50 -07:00
parent 29444d1df3
commit b288b49cea

View file

@ -49,7 +49,7 @@ Here's a simple example test:
} }
public function testAllIsRightWithTheWorld() { public function testAllIsRightWithTheWorld() {
$this->assertEqual(4, 2 + 2, '2 + 2 = 4'); $this->assertEqual(4, $this->two + $this->two, '2 + 2 = 4');
} }
} }