Skip to content

Commit fc7835f

Browse files
committed
fix
1 parent 7577668 commit fc7835f

File tree

3 files changed

+4
-42
lines changed

3 files changed

+4
-42
lines changed

.nuke/build.schema.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@
331331
"CompileTracerNativeSrcLinux",
332332
"CompileTracerNativeTestsLinux",
333333
"CompileTracerNativeTestsWindows",
334+
"CopyDdDotnet",
334335
"CopyLibDdwaf",
335336
"CopyNativeFilesForAppSecUnitTests",
336337
"CopyServerlessArtifacts",
@@ -529,6 +530,7 @@
529530
"CompileTracerNativeSrcLinux",
530531
"CompileTracerNativeTestsLinux",
531532
"CompileTracerNativeTestsWindows",
533+
"CopyDdDotnet",
532534
"CopyLibDdwaf",
533535
"CopyNativeFilesForAppSecUnitTests",
534536
"CopyServerlessArtifacts",

tracer/test/Datadog.Trace.ClrProfiler.Managed.Tests/AutoInstrumentation/AWS/Lambda/DelegateWrapperTests.cs

Lines changed: 0 additions & 40 deletions
This file was deleted.

tracer/test/Datadog.Trace.Tests/Util/Delegates/FuncInstrumentationTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,13 +470,13 @@ public async Task Async1Test()
470470
},
471471
onDelegateAsyncEnd: async (sender, returnValue, exception, state) =>
472472
{
473-
// Interlocked.Increment(ref value).Should().Be(4);
473+
Interlocked.Increment(ref value).Should().Be(4);
474474
await Task.Delay(500).ConfigureAwait(false);
475475
return ((int)returnValue) + 1;
476476
}));
477477
result = await func2("Arg01").ConfigureAwait(false);
478478
result.Should().Be(43);
479-
// value.Should().Be(4);
479+
value.Should().Be(4);
480480
}
481481

482482
public readonly struct Async1Callbacks : IBegin1Callbacks, IReturnCallback, IReturnAsyncCallback

0 commit comments

Comments
 (0)