diff --git a/tests/phpunit/includes/bootstrap.php b/tests/phpunit/includes/bootstrap.php
index 65c1c370c4..876c81941e 100644
a
|
b
|
|
144 | 144 | tests_add_filter( 'wp_die_handler', '_wp_die_handler_filter' ); |
145 | 145 | // Use the Spy REST Server instead of default. |
146 | 146 | tests_add_filter( 'wp_rest_server_class', '_wp_rest_server_class_filter' ); |
| 147 | // Prevent updating translations asynchronously. |
| 148 | tests_add_filter( 'async_update_translation', '__return_false' ); |
| 149 | // Disable background updates. |
| 150 | tests_add_filter( 'automatic_updater_disabled', '__return_true' ); |
147 | 151 | |
148 | 152 | // Preset WordPress options defined in bootstrap file. |
149 | 153 | // Used to activate themes, plugins, as well as other settings. |