From b288b49cea8641bdc1cbdbf23829587b7bd69bf4 Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 3 Aug 2011 09:16:50 -0700 Subject: [PATCH] Update doc example. --- src/docs/developer/unit_tests.diviner | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/developer/unit_tests.diviner b/src/docs/developer/unit_tests.diviner index bfcff05e73..a9a2ebfa72 100644 --- a/src/docs/developer/unit_tests.diviner +++ b/src/docs/developer/unit_tests.diviner @@ -49,7 +49,7 @@ Here's a simple example test: } public function testAllIsRightWithTheWorld() { - $this->assertEqual(4, 2 + 2, '2 + 2 = 4'); + $this->assertEqual(4, $this->two + $this->two, '2 + 2 = 4'); } }