Skip to content

Commit

Permalink
Fix difficulty settings content colour test
Browse files Browse the repository at this point in the history
  • Loading branch information
Joehuu committed Jul 18, 2024
1 parent 736affb commit 4d24442
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public void TestAPIBeatmap()
private BarStatisticRow barAt(int index) => difficultySettingsContent.ChildrenOfType<BarStatisticRow>().ElementAt(index);

private bool barIsWhiteAt(int index) => barAt(index).ChildrenOfType<Bar>().ElementAt(1).AccentColour == ColourProvider.Highlight1;
private bool modBarIsBlueAt(int index) => barAt(index).ChildrenOfType<Bar>().ElementAt(2).AccentColour == colours.BlueDark;
private bool modBarIsBlueAt(int index) => barAt(index).ChildrenOfType<Bar>().ElementAt(2).AccentColour == colours.Blue1;
private bool modBarIsRedAt(int index) => barAt(index).ChildrenOfType<Bar>().ElementAt(2).AccentColour == colours.Red1;
}
}

0 comments on commit 4d24442

Please sign in to comment.