mirror of https://github.com/ppy/osu
Delegate to base in a more consistent manner
This commit is contained in:
parent
1d5084c355
commit
34476f6c2f
|
@ -113,7 +113,7 @@ public void TestSamplePlaybackWithRateMods(Type expectedMod, double expectedRate
|
|||
|
||||
AddStep("start", () => gameplayContainer.Start());
|
||||
|
||||
AddAssert("sample playback rate matches mod rates", () => sample.TestChannel.AggregateFrequency.Value == expectedRate);
|
||||
AddAssert("sample playback rate matches mod rates", () => sample.Channel.AggregateFrequency.Value == expectedRate);
|
||||
}
|
||||
|
||||
private class TestSkin : LegacySkin
|
||||
|
@ -166,7 +166,7 @@ public TestDrawableStoryboardSample(StoryboardSampleInfo sampleInfo)
|
|||
{
|
||||
}
|
||||
|
||||
public SampleChannel TestChannel => Channel;
|
||||
public new SampleChannel Channel => base.Channel;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue