Skip to content

Commit

Permalink
Removed redundant qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
tsimbalar committed Oct 16, 2017
1 parent 3d8a2e7 commit fc4b4f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Serilog.Tests/Settings/SettingValueConversionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ public void EmptyStringValuesConvertToNullIfTargetIsNullable()
[Fact]
public void ValuesConvertToNullableTimeSpan()
{
var result = (System.TimeSpan?)SettingValueConversions.ConvertToType("00:01:00", typeof(System.TimeSpan?));
Assert.Equal(System.TimeSpan.FromMinutes(1), result);
var result = (TimeSpan?)SettingValueConversions.ConvertToType("00:01:00", typeof(TimeSpan?));
Assert.Equal(TimeSpan.FromMinutes(1), result);
}

[Fact]
Expand Down

0 comments on commit fc4b4f2

Please sign in to comment.