MXS-1717: Fix test regressions

Due to the changes done for MXS-1717, the bug673 test had to be adjusted
and a newline has to be printed after users_diagnostic is called.
This commit is contained in:
Markus Mäkelä
2018-03-15 23:12:34 +02:00
parent d7c1d76065
commit 07cca088c9
2 changed files with 4 additions and 10 deletions

View File

@ -523,10 +523,7 @@ void dcb_PrintAdminUsers(DCB *dcb)
{
users_diagnostic(dcb, linux_users);
}
else
{
dcb_printf(dcb, "\n");
}
dcb_printf(dcb, "\n");
dcb_printf(dcb, "Created network accounts (insecure): ");
@ -534,8 +531,5 @@ void dcb_PrintAdminUsers(DCB *dcb)
{
users_diagnostic(dcb, inet_users);
}
else
{
dcb_printf(dcb, "\n");
}
dcb_printf(dcb, "\n");
}