Tests: Merge [24251] from `_wp_filter_build_unique_id()` to `_test_filter_build_unique_id()`, for consistency.

See #47407.

git-svn-id: https://develop.svn.wordpress.org/trunk@46806 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-11-29 22:15:31 +00:00
parent aacfec6734
commit 4bd7b37ef9
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ function _test_filter_build_unique_id( $tag, $function, $priority ) {
return spl_object_hash( $function[0] ) . $function[1];
} elseif ( is_string( $function[0] ) ) {
// Static calling.
return $function[0] . $function[1];
return $function[0] . '::' . $function[1];
}
}