1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-20 05:15:37 +08:00

Remove redundant string interpolation

This commit is contained in:
Dean Herbert 2021-06-09 17:34:47 +09:00
parent 448e4e7ee5
commit 47eeab34e1

View File

@ -58,7 +58,7 @@ namespace osu.Game.Tests.Skins
ISkin expected() => allowBeatmapLookups ? (ISkin)beatmapSource : userSource;
AddAssert($"Check lookup is from correct source", () => requester.FindProvider(s => s.GetDrawableComponent(new TestSkinComponent()) != null) == expected());
AddAssert("Check lookup is from correct source", () => requester.FindProvider(s => s.GetDrawableComponent(new TestSkinComponent()) != null) == expected());
}
public class UserSkinSource : LegacySkin