We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eb864b commit 680f8b4Copy full SHA for 680f8b4
test/UnitTest/Components/SelectTest.cs
@@ -264,7 +264,7 @@ public void IsNullable_Ok()
264
265
private static bool IsNullable(object select)
266
{
267
- var mi = select.GetType().GetMethod("IsNullable", BindingFlags.Instance | BindingFlags.NonPublic)!;
+ var mi = select.GetType().BaseType!.GetMethod("IsNullable", BindingFlags.Instance | BindingFlags.NonPublic)!;
268
return (bool)mi.Invoke(select, null)!;
269
}
270
0 commit comments