feat(trainer): make test output more obvious

This commit is contained in:
Anna 2021-03-02 12:53:19 -05:00
parent 7c7bc22859
commit 79f4c702b2
Signed by: anna
GPG Key ID: 0B391D8F06FCD9E0

View File

@ -174,7 +174,11 @@ namespace NoSoliciting.Trainer {
var row = new object[1 + confuse.Count];
row[0] = name;
for (var j = 0; j < confuse.Count; j++) {
row[j + 1] = confuse[j];
if (i == j) {
row[j + 1] = $"= {confuse[j]} =";
} else {
row[j + 1] = confuse[j];
}
}
table.AddRow(row);