fix failing test

This commit is contained in:
Philipp Crocoll
2023-02-28 22:37:32 +01:00
parent 914224e4fa
commit 595a451f77

View File

@@ -75,7 +75,7 @@ namespace Kp2aAutofillParserTest
actualHints = new string[0];
if (actualHints.Any() || expectedHints.Any())
{
_testOutputHelper.WriteLine($"field = {field.IdEntry} {field.Hint} {string.Join(",", field.AutofillHints)}");
_testOutputHelper.WriteLine($"field = {field.IdEntry} {field.Hint} {string.Join(",", field.AutofillHints ?? new string[]{})}");
_testOutputHelper.WriteLine("actual Hints = " + string.Join(", ", actualHints));
_testOutputHelper.WriteLine("expected Hints = " + string.Join(", ", expectedHints));
}