diff --git a/core/modules/statistics/src/Tests/StatisticsInvalidPostTest.php b/core/modules/statistics/src/Tests/StatisticsInvalidPostTest.php
index 5893fff..cd765c9 100644
--- a/core/modules/statistics/src/Tests/StatisticsInvalidPostTest.php
+++ b/core/modules/statistics/src/Tests/StatisticsInvalidPostTest.php
@@ -58,7 +58,6 @@ public function testInvalidPost() {
       ->fetchAssoc();
     $this->assertEqual($result['nid'], array(), 'Verifying that nothing is written to the node_counter table.');
 
-
     // An id greater than int(10), the maximum nid database limit.
     $nid = 123456789012;
     $post = array('nid' => $nid);
@@ -71,7 +70,6 @@ public function testInvalidPost() {
       ->execute()
       ->fetchAssoc();
     $this->assertEqual($result['nid'], array(), 'Verifying that nothing is written to the node_counter table.');
-
   }
 
 }
