Sfoglia il codice sorgente

Add missing semicolon

Wouter J 10 anni fa
parent
commit
34648f52f2
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      Tests/Mapper/BaseGroupedMapperTest.php

+ 1 - 1
Tests/Mapper/BaseGroupedMapperTest.php

@@ -141,7 +141,7 @@ class BaseGroupedMapperTest extends \PHPUnit_Framework_TestCase
         $this->assertTrue($this->baseGroupedMapper->hasOpenTab(), '->hasOpenTab() returns true when there is an open tab');
         $this->assertTrue($this->baseGroupedMapper->hasOpenTab(), '->hasOpenTab() returns true when there is an open tab');
         
         
         $this->baseGroupedMapper->end();
         $this->baseGroupedMapper->end();
-        $this->assertFalse($this->baseGroupedMapper->hasOpenTab(), '->hasOpenTab() returns false when all tabs are closed')
+        $this->assertFalse($this->baseGroupedMapper->hasOpenTab(), '->hasOpenTab() returns false when all tabs are closed');
     }
     }
 
 
     /**
     /**