Skip to content

Commit 9dfcc8e

Browse files
removed extra spaces
1 parent 6a75f9b commit 9dfcc8e

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

src/System.Windows.Forms.Design/tests/UnitTests/System/Windows/Forms/Design/ToolStripContainerActionListTests.cs

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,14 @@ public void GetSortedActionItems_ReturnsCorrectItems_WhenDockNotFilled()
156156
.Select(i => i.DisplayName ?? string.Empty)
157157
.ToList();
158158

159-
displayNames.Should().Contain(new[] {
160-
SR.ToolStripContainerActionList_Top,
161-
SR.ToolStripContainerActionList_Bottom,
162-
SR.ToolStripContainerActionList_Left,
163-
SR.ToolStripContainerActionList_Right,
164-
SR.DesignerShortcutDockInForm });
159+
displayNames.Should().Contain(new[]
160+
{
161+
SR.ToolStripContainerActionList_Top,
162+
SR.ToolStripContainerActionList_Bottom,
163+
SR.ToolStripContainerActionList_Left,
164+
SR.ToolStripContainerActionList_Right,
165+
SR.DesignerShortcutDockInForm
166+
});
165167
}
166168

167169
[Fact]
@@ -175,11 +177,13 @@ public void GetSortedActionItems_ReturnsCorrectItems_WhenDockFilled()
175177
.Select(i => i.DisplayName ?? string.Empty)
176178
.ToList();
177179

178-
displayNames.Should().Contain(new[] {
180+
displayNames.Should().Contain(new[]
181+
{
179182
SR.ToolStripContainerActionList_Top,
180183
SR.ToolStripContainerActionList_Bottom,
181184
SR.ToolStripContainerActionList_Left,
182-
SR.ToolStripContainerActionList_Right });
185+
SR.ToolStripContainerActionList_Right
186+
});
183187
}
184188

185189
[Fact]
@@ -198,11 +202,13 @@ public void GetSortedActionItems_ReturnsCorrectItems_WhenProvideReparent()
198202
.Select(i => i.DisplayName ?? string.Empty)
199203
.ToList();
200204

201-
displayNames.Should().Contain(new[] {
205+
displayNames.Should().Contain(new[]
206+
{
202207
SR.ToolStripContainerActionList_Top,
203208
SR.ToolStripContainerActionList_Bottom,
204209
SR.ToolStripContainerActionList_Left,
205210
SR.ToolStripContainerActionList_Right,
206-
SR.DesignerShortcutReparentControls });
211+
SR.DesignerShortcutReparentControls
212+
});
207213
}
208214
}

0 commit comments

Comments
 (0)