Skip to content

Commit 470b2be

Browse files
committed
Fix build
1 parent 0ac09b7 commit 470b2be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Components/Endpoints/test/Binding/FormDataDeserializerTests.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ public void CanDeserialize_CustomParsableTypes()
7777
// Assert
7878
Assert.Equal(expected, result);
7979
}
80-
80+
81+
#nullable enable
8182
[Fact]
8283
public void CanDeserialize_NullableCustomParsableTypes()
8384
{
@@ -110,6 +111,7 @@ public void CanDeserialize_NullableCustomParsableTypes_NullValue()
110111
// Assert
111112
Assert.Null(result);
112113
}
114+
#nullable disable
113115

114116
public static TheoryData<string, Type, object> NullableBasicTypes
115117
{

0 commit comments

Comments
 (0)