thinkingmedia 9 years ago
parent
commit
7fee75cdb3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Database/QueryTest.php

+ 1 - 1
tests/TestCase/Database/QueryTest.php

@@ -3377,7 +3377,7 @@ class QueryTest extends TestCase
     public function testIdentifierExpression()
     {
         $query = new Query($this->connection);
-        /* @var IdentifierExpression $expression */
+        /* @var \Cake\Database\Expression\IdentifierExpression $expression */
         $expression = $query->identifier('foo');
         $this->assertInstanceOf(IdentifierExpression::class, $expression);
         $this->assertEquals('foo', $expression->getIdentifier());