mirror of
https://github.com/osukey/osukey.git
synced 2025-08-01 21:58:46 +09:00
Fix clear identifier typos
This commit is contained in:
@ -30,7 +30,7 @@ namespace osu.Game.Tests.Visual.Online
|
||||
},
|
||||
});
|
||||
|
||||
visiblityAssert(true);
|
||||
visibilityAssert(true);
|
||||
}
|
||||
|
||||
[Test]
|
||||
@ -44,7 +44,7 @@ namespace osu.Game.Tests.Visual.Online
|
||||
},
|
||||
});
|
||||
|
||||
visiblityAssert(true);
|
||||
visibilityAssert(true);
|
||||
}
|
||||
|
||||
[Test]
|
||||
@ -59,7 +59,7 @@ namespace osu.Game.Tests.Visual.Online
|
||||
},
|
||||
});
|
||||
|
||||
visiblityAssert(true);
|
||||
visibilityAssert(true);
|
||||
}
|
||||
|
||||
[Test]
|
||||
@ -73,10 +73,10 @@ namespace osu.Game.Tests.Visual.Online
|
||||
},
|
||||
});
|
||||
|
||||
visiblityAssert(false);
|
||||
visibilityAssert(false);
|
||||
}
|
||||
|
||||
private void visiblityAssert(bool shown)
|
||||
private void visibilityAssert(bool shown)
|
||||
{
|
||||
AddAssert($"is container {(shown ? "visible" : "hidden")}", () => container.Alpha == (shown ? 1 : 0));
|
||||
}
|
||||
|
Reference in New Issue
Block a user