feat(trainer): make test output more obvious

This commit is contained in:
Anna 2021-03-02 12:53:19 -05:00
parent fd256722a1
commit 090c4eff3c
1 changed files with 5 additions and 1 deletions

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);