Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

fix 8.2 deprecation #286

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/tests/basic_context.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ OpenCensus Trace: Basic Context Test
<?php

$res = opencensus_trace_set_context('traceid', 1234);
echo "Set context: ${res}\n";
echo "Set context: {$res}\n";

$context = opencensus_trace_context();
$class = get_class($context);
Expand Down
2 changes: 1 addition & 1 deletion ext/tests/inherit_context.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ OpenCensus Trace: Root inherits from context
<?php

$res = opencensus_trace_set_context('traceid', 1234);
echo "Set context: ${res}\n";
echo "Set context: {$res}\n";

opencensus_trace_begin('root', []);
opencensus_trace_begin('inner', []);
Expand Down