We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52f94a6 commit 70fea3cCopy full SHA for 70fea3c
1 file changed
PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI/TestRunnerWindow.cs
@@ -550,7 +550,7 @@ private void gridResults_SelectionChanged(object sender, EventArgs e)
550
txtTestEnd.Text = testResult.End.ToString(CultureInfo.CurrentCulture);
551
txtTestTime.Text = $"{testResult.Time} s";
552
553
- txtErrorMessage.Text = testResult.Error;
+ txtErrorMessage.Text = testResult.Error == null ? "" : testResult.Error.Replace("\n", "\r\n");
554
555
var bindingSource = new BindingSource { DataSource = testResult.failedExpectations };
556
gridTestFailures.DataSource = bindingSource;
0 commit comments