10 lines
325 B
Twig
10 lines
325 B
Twig
/**
|
|
* Implements hook_simpletest_alter().
|
|
*/
|
|
function {{ machine_name }}_simpletest_alter(&$groups) {
|
|
// An alternative session handler module would not want to run the original
|
|
// Session HTTPS handling test because it checks the sessions table in the
|
|
// database.
|
|
unset($groups['Session']['testHttpsSession']);
|
|
}
|