Skip to content

Commit 43e9c34

Browse files
committed
Fix nullable warnings in tests
1 parent b086873 commit 43e9c34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Rmastack.ExpressionParser.Tests/ExpressionParserTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ private static List<object[]> GetResource(string resourceName)
114114

115115
public class UserInfo
116116
{
117-
public string Name { get; set; }
118-
public string LastName { get; set; }
117+
public string? Name { get; set; }
118+
public string? LastName { get; set; }
119119
}
120120
}

0 commit comments

Comments
 (0)