diff --git a/profiling/tests/phpt/exceptions_01.phpt b/profiling/tests/phpt/exceptions_01.phpt index 694e4f5c81..7b314e8dc4 100644 --- a/profiling/tests/phpt/exceptions_01.phpt +++ b/profiling/tests/phpt/exceptions_01.phpt @@ -10,7 +10,7 @@ if (!extension_loaded('datadog-profiling')) ob_start(); phpinfo(INFO_MODULES); $info = ob_get_clean(); -if (strpos($info, 'Experimental Exception Profiling Enabled') === false) +if (strpos($info, 'Exception Profiling Enabled') === false) echo "skip: datadog profiler is compiled without exception profiling support\n"; ?> --ENV-- diff --git a/profiling/tests/phpt/gc_collect_cycles_01.phpt b/profiling/tests/phpt/gc_collect_cycles_01.phpt index 83468280e4..26c86ad8d3 100644 --- a/profiling/tests/phpt/gc_collect_cycles_01.phpt +++ b/profiling/tests/phpt/gc_collect_cycles_01.phpt @@ -10,7 +10,7 @@ if (!extension_loaded('datadog-profiling')) ob_start(); phpinfo(INFO_MODULES); $info = ob_get_clean(); -if (strpos($info, 'Experimental Timeline Enabled') === false) +if (strpos($info, 'Timeline Enabled') === false) echo "skip: datadog profiler is compiled without timeline support\n"; ?> --ENV--