Browse Source

whitespace fix

Cory Thompson 11 years ago
parent
commit
59b31e213a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Controller/Component/PaginatorComponentTest.php

+ 1 - 1
tests/TestCase/Controller/Component/PaginatorComponentTest.php

@@ -795,7 +795,7 @@ class PaginatorComponentTest extends TestCase {
 		$table->expects($this->once())
 			->method('query')
 			->will($this->returnValue($query));
-		
+
 		$query->expects($this->once())->method('applyOptions')
 			->with(['limit' => 2, 'page' => 1, 'order' => [], 'whitelist' => ['limit', 'sort', 'page', 'direction']]);
 		$this->Paginator->paginate($table, $settings);