Skip to content

Commit 39eb121

Browse files
test(profiling): fix accidentally skipped tests (#2517)
1 parent 8f21029 commit 39eb121

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

profiling/tests/phpt/exceptions_01.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if (!extension_loaded('datadog-profiling'))
1010
ob_start();
1111
phpinfo(INFO_MODULES);
1212
$info = ob_get_clean();
13-
if (strpos($info, 'Experimental Exception Profiling Enabled') === false)
13+
if (strpos($info, 'Exception Profiling Enabled') === false)
1414
echo "skip: datadog profiler is compiled without exception profiling support\n";
1515
?>
1616
--ENV--

profiling/tests/phpt/gc_collect_cycles_01.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if (!extension_loaded('datadog-profiling'))
1010
ob_start();
1111
phpinfo(INFO_MODULES);
1212
$info = ob_get_clean();
13-
if (strpos($info, 'Experimental Timeline Enabled') === false)
13+
if (strpos($info, 'Timeline Enabled') === false)
1414
echo "skip: datadog profiler is compiled without timeline support\n";
1515
?>
1616
--ENV--

0 commit comments

Comments
 (0)