Skip to content

Commit

Permalink
fix skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
realFlowControl committed Feb 15, 2024
1 parent d8a8624 commit 3b2152a
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 3b2152a

Please sign in to comment.