We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f63e409 commit efa3dfbCopy full SHA for efa3dfb
tests/phpunit/tests/wp/sendHeaders.php
@@ -8,6 +8,13 @@
8
class Tests_WP_SendHeaders extends WP_UnitTestCase {
9
protected $headers_sent = array();
10
11
+ public function set_up() {
12
+ parent::set_up();
13
+
14
+ // Remove the environment-based filter to test core behavior in isolation.
15
+ remove_filter( 'pings_open', 'wp_disable_pings_open_for_environment' );
16
+ }
17
18
/**
19
* @ticket 56068
20
*/
0 commit comments