Skip to content

Commit

Permalink
test(profiling): fix accidentally skipped tests (#2517)
Browse files Browse the repository at this point in the history
  • Loading branch information
realFlowControl authored Feb 15, 2024
1 parent 8f21029 commit 39eb121
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion profiling/tests/phpt/exceptions_01.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -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--
Expand Down
2 changes: 1 addition & 1 deletion profiling/tests/phpt/gc_collect_cycles_01.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -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--
Expand Down

0 comments on commit 39eb121

Please sign in to comment.