Skip to content

Commit 6c8f4f5

Browse files
committed
chore: Fix failing unit test
1 parent 3c96c72 commit 6c8f4f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ObjectSemantics.NET.Tests/PropertyNullableTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public void Should_Map_Nullable_DateTime_Property_Given_NULL()
1515
{
1616
FileContents = @"Last Clocked In: {{ LastClockedInDate:yyyy-MM-dd }}"
1717
};
18-
string generatedTemplate = template.Map(clockInDetails, template);
18+
string generatedTemplate = template.Map(clockInDetails);
1919
string expectedString = "Last Clocked In: ";
2020
Assert.Equal(expectedString, generatedTemplate, false, true, true);
2121
}

0 commit comments

Comments
 (0)