Skip to content

Commit

Permalink
Missing a brace
Browse files Browse the repository at this point in the history
  • Loading branch information
jails committed Apr 6, 2012
1 parent 994125e commit a5cfa35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cases/template/helper/HtmlTest.php
Expand Up @@ -502,7 +502,7 @@ public function testLocationOption() {
$this->html->link('home', '/home');
$this->assertFalse(isset($result['options']['location']));

$expected = array('app' => array('domain' => 'bob');
$expected = array('app' => array('domain' => 'bob'));
$this->html->link('home', '/home', array('location' => $expected ));
$this->assertEqual($expected, $result['options']['location']);
}
Expand Down

0 comments on commit a5cfa35

Please sign in to comment.