Skip to content

Commit db588a9

Browse files
committed
Make colon implicit in title
1 parent c14bb90 commit db588a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

TerminalGuiFluentAssertions/Class1.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public GuiTestContext<T> ResizeConsole (int width, int height)
214214
}
215215
public GuiTestContext<T> ScreenShot (string title, TextWriter writer)
216216
{
217-
writer.WriteLine(title);
217+
writer.WriteLine(title +":");
218218
var text = Application.ToString ();
219219

220220
writer.WriteLine(text);

Tests/UnitTests/FluentTests/BasicFluentAssertionTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public void ContextMenu_CrashesOnRight ()
7575
.WithContextMenu(ctx,menuItems)
7676
// Click in main area inside border
7777
.RightClick(1,1)
78-
.ScreenShot ("After open menu:",_out)
78+
.ScreenShot ("After open menu",_out)
7979
.LeftClick (3, 3)
8080
/*.Assert (Application.Top.Focused.Should ().BeAssignableTo(typeof(MenuBarItem)))
8181
.Down()

0 commit comments

Comments
 (0)