Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsandfoxes committed Oct 9, 2023
1 parent 4a8e249 commit 3d8bb0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Sentry.Tests/Internals/ApplicationVersionLocatorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ public void GetCurrent_VersionWithPrefix_ReturnsVersionAsIs()

[Theory]
[InlineData("")]
public void GetCurrent_InvalidCases_ReturnsNull(string version)
public void GetCurrent_InvalidCases_DoesNotReturnNull(string version)
{
var asm = AssemblyCreationHelper.CreateWithInformationalVersion(version);
var actual = ApplicationVersionLocator.GetCurrent(asm);
Assert.Null(actual);
Assert.NotNull(actual);
}

[Fact]
Expand Down

0 comments on commit 3d8bb0a

Please sign in to comment.