Fix forgotten rename

This commit is contained in:
Dean Herbert
2017-08-16 17:43:01 +09:00
parent 3df51540e1
commit 7e1fc47b76
2 changed files with 5 additions and 5 deletions

View File

@ -7,19 +7,19 @@ namespace osu.Desktop.Tests.Visual
{
public class TestCaseKeyConfiguration : OsuTestCase
{
private readonly KeyConfigurationOverlay configuration;
private readonly KeyBindingOverlay overlay;
public override string Description => @"Key configuration";
public TestCaseKeyConfiguration()
{
Child = configuration = new KeyConfigurationOverlay();
Child = overlay = new KeyBindingOverlay();
}
protected override void LoadComplete()
{
base.LoadComplete();
configuration.Show();
overlay.Show();
}
}
}