Browse Source

Fix incorrect variable name.

ADmad 11 years ago
parent
commit
41ed5871dd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/View/ViewVarsTraitTest.php

+ 1 - 1
tests/TestCase/View/ViewVarsTraitTest.php

@@ -133,7 +133,7 @@ class ViewVarsTraitTest extends TestCase {
 		$result = $this->subject->viewOptions();
 
 		$this->assertTrue(is_array($result));
-		$this->assertTrue(empty($resulit));
+		$this->assertTrue(empty($result));
 	}
 
 }