Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed Nov 30, 2023
1 parent 04a8d04 commit 8aeb05d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ private SampleProfile CaptureAndValidate(ITransactionProfilerFactory factory)
collectTask.Wait();
var profileInfo = collectTask.Result;
Assert.NotNull(profileInfo);
ValidateProfile(profileInfo.Profile, elapsedNanoseconds);
return profileInfo.Profile;
ValidateProfile(profileInfo.Profile as SampleProfile, elapsedNanoseconds);
return profileInfo.Profile as SampleProfile;
}

[Fact(Skip = "This test is flaky. TODO: rework")]
Expand Down

0 comments on commit 8aeb05d

Please sign in to comment.