protected function tearDown()
 {
     // The DatabaseExpirableStorage class has a destructor which deletes rows
     // from the key_value_expire table. We need to make sure the destructor
     // runs before the table is deleted.
     $this->container->set('keyvalue.expirable', NULL);
     db_drop_table('key_value_expire');
     parent::tearDown();
 }
Ejemplo n.º 2
0
 protected function tearDown()
 {
     db_drop_table('key_value');
     parent::tearDown();
 }