Skip to content

Commit

Permalink
Rename local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
bdach committed Oct 6, 2023
1 parent 10ce570 commit 5ea45e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game.Tests/NonVisual/GameplayClockContainerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ public partial class GameplayClockContainerTest
[TestCase(1)]
public void TestTrueGameplayRateWithGameplayAdjustment(double underlyingClockRate)
{
var framedClock = new TrackVirtual(60000) { Frequency = { Value = underlyingClockRate } };
var gameplayClock = new TestGameplayClockContainer(framedClock);
var trackVirtual = new TrackVirtual(60000) { Frequency = { Value = underlyingClockRate } };
var gameplayClock = new TestGameplayClockContainer(trackVirtual);

Assert.That(gameplayClock.GetTrueGameplayRate(), Is.EqualTo(2));
}
Expand Down

0 comments on commit 5ea45e3

Please sign in to comment.