Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzibyte committed Dec 12, 2023
1 parent 4e543e0 commit bb9f45e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ public void TestClearItemsInBindableWhileNotPresent()
AddStep("hide dropdown", () => testDropdown.Hide());
AddStep("clear items", () => bindableList.Clear());
AddStep("show dropdown", () => testDropdown.Show());
AddAssert("dropdown menu empty", () => !testDropdown.Menu.DrawableMenuItems.Any());
AddAssert("dropdown menu empty", () => !testDropdown.Menu.Children.Any());
}

/// <summary>
Expand Down

0 comments on commit bb9f45e

Please sign in to comment.