Skip to content

Commit a1855a8

Browse files
committed
Test output mechanism requires Trim() anyway
1 parent f309ea8 commit a1855a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/SeqCli.EndToEnd/Settings/SettingBasicsTestCase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public Task ExecuteAsync(
2727

2828
exit = runner.Exec("setting show", "-n instancetitle");
2929
Assert.Equal(0, exit);
30-
Assert.Equal("Hello, world!", runner.LastRunProcess.Output);
30+
Assert.Equal("Hello, world!", runner.LastRunProcess.Output.Trim());
3131

3232
exit = runner.Exec("setting clear", "-n instancetitle");
3333
Assert.Equal(0, exit);

0 commit comments

Comments
 (0)