Revert unwanted changes in other tests

This commit is contained in:
ansel 2022-10-08 18:55:58 +03:00
parent c384093802
commit e7b1f369a3
2 changed files with 2 additions and 5 deletions

View File

@ -31,13 +31,11 @@ namespace osu.Game.Tests.Visual.Online
[SetUp]
public void SetUp() => Schedule(() =>
{
Child = new BasicScrollContainer
{
RelativeSizeAxes = Axes.Both,
Child = commentsContainer = new CommentsContainer()
};
});
});
[Test]
public void TestIdleState()
@ -141,7 +139,7 @@ namespace osu.Game.Tests.Visual.Online
};
});
private static CommentBundle getExampleComments(bool withPinned = false)
private CommentBundle getExampleComments(bool withPinned = false)
{
var bundle = new CommentBundle
{

View File

@ -24,7 +24,6 @@ namespace osu.Game.Tests.Visual.Online
[Cached]
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Blue);
private TestCommentsContainer comments;
[SetUp]