MDL-55117 behat: Re-initialise to ensure modified config is not used

As behat cli process is 1 run for features
Any modification in  will be reflected
in later runs on cli. In this case
- disabling enablebadges in block_badges.feature
- reflected while running cron in award_badges.feature
This commit is contained in:
Rajesh Taneja 2016-09-14 10:46:19 +08:00
parent 0344082208
commit a396321e44
No known key found for this signature in database
GPG Key ID: B363F7FB787F80E4

View File

@ -345,5 +345,9 @@ class behat_util extends testing_util {
// Inform data generator.
self::get_data_generator()->reset();
// Initialise $CFG with default values. This is needed for behat cli process, so we don't have modified
// $CFG values from the old run. @see set_config.
initialise_cfg();
}
}