forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
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']);
|
|
}
|