Browse Source

Update FunctionsBuilderTest.php

Matthias Wirtz 5 years ago
parent
commit
6d1ea421ef
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Database/FunctionsBuilderTest.php

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

@@ -118,7 +118,7 @@ class FunctionsBuilderTest extends TestCase
         $this->assertInstanceOf(AggregateExpression::class, $function);
         $this->assertSame('MAX(total)', $function->sql(new ValueBinder()));
         $this->assertSame('float', $function->getReturnType());
-        
+
         $function = $this->functions->max('created', ['datetime']);
         $this->assertInstanceOf(AggregateExpression::class, $function);
         $this->assertSame('MAX(created)', $function->sql(new ValueBinder()));