Skip to content

Commit

Permalink
Fixing failing test caused by name() being able to quote things bette…
Browse files Browse the repository at this point in the history
…r now.
  • Loading branch information
markstory committed Nov 13, 2010
1 parent a146782 commit 76a80c2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -824,7 +824,7 @@ function testVirtualFieldSeparators() {
$this->db->virtualFieldSeparator = '_$_';
$result = $this->db->fields($model, null, array('data', 'other__field'));
$expected = array('`BinaryTest`.`data`', '(SUM(id)) AS BinaryTest_$_other__field');
$expected = array('`BinaryTest`.`data`', '(SUM(id)) AS `BinaryTest_$_other__field`');
$this->assertEqual($result, $expected);
}
Expand Down

0 comments on commit 76a80c2

Please sign in to comment.