Skip to content

Commit

Permalink
fixes a typo in tautotrace
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanpo committed Oct 29, 2024
1 parent 40211f0 commit 961c824
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/tautotrace.m
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,9 @@ function testAutoManualInstrument(testCase)
% check tracer and span names
tracername = "ManualInstrument";
verifyEqual(testCase, string(results{1}.resourceSpans.scopeSpans.scope.name), tracername);
verifyEqual(testCase, string(results{1}.resourceSpans.scopeSpans.scope.name), tracername);
verifyEqual(testCase, string(results{1}.resourceSpans.scopeSpans.scope.name), tracername);
verifyEqual(testCase, string(results{3}.resourceSpans.scopeSpans.scope.name), tracername);
verifyEqual(testCase, string(results{4}.resourceSpans.scopeSpans.scope.name), tracername);

verifyEqual(testCase, string(results{1}.resourceSpans.scopeSpans.spans.name), "compute_y");
verifyEqual(testCase, string(results{2}.resourceSpans.scopeSpans.spans.name), "generate_data");
verifyEqual(testCase, string(results{3}.resourceSpans.scopeSpans.spans.name), "polyfit");
Expand Down

0 comments on commit 961c824

Please sign in to comment.