Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Feb 11, 2023
1 parent b74cd5d commit cf5ab51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GitHubActionsTestLogger.Tests/AnnotationSpecs.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.IO;
using System.Reflection;
using FluentAssertions;
using GitHubActionsTestLogger.Tests.Utils;
using GitHubActionsTestLogger.Tests.Utils.Extensions;
Expand Down Expand Up @@ -219,7 +220,7 @@ public void Failed_tests_get_reported_with_approximate_source_information_if_exc
// Act
context.SimulateTestRun(
new TestResultBuilder()
.SetSource(typeof(AnnotationSpecs).Assembly.Location)
.SetSource(Assembly.GetExecutingAssembly().Location)
.SetDisplayName("Test1")
.SetOutcome(TestOutcome.Failed)
.SetErrorMessage("ErrorMessage")
Expand Down

0 comments on commit cf5ab51

Please sign in to comment.