Skip to content

Commit

Permalink
Fix build issues after dependency updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
atmgrifter00 committed Mar 5, 2024
1 parent 5eeec3b commit c57f66c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void NimbleTable_WithParentIdFieldNameAttribute_HasTableMarkup()
[InlineData(TableRowSelectionMode.None, null)]
[InlineData(TableRowSelectionMode.Single, "single")]
[InlineData(TableRowSelectionMode.Multiple, "multiple")]
public void TextFieldAppearance_AttributeIsSet(TableRowSelectionMode value, string expectedAttribute)
public void TextFieldAppearance_AttributeIsSet(TableRowSelectionMode value, string? expectedAttribute)
{
var table = RenderWithPropertySet<TableRowSelectionMode?, TableRowData>(x => x.SelectionMode, value);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ public abstract class NimbleAnchorBaseTests<T> where T : NimbleAnchorBase
};

[Theory]
#pragma warning disable xUnit1042 // The member referenced by the MemberData attribute returns untyped data rows
[MemberData(nameof(Data))]
#pragma warning restore xUnit1042 // The member referenced by the MemberData attribute returns untyped data rows
public void NimbleAnchorBase_AttributeIsSet(Expression<Func<T, string>> propertyGetter, string markupName)
{
var anchorMenuItem = RenderWithPropertySet(propertyGetter, "foo");
Expand Down

0 comments on commit c57f66c

Please sign in to comment.