From 595a451f77bb38c3855a5478d01393946a217d3a Mon Sep 17 00:00:00 2001 From: Philipp Crocoll Date: Tue, 28 Feb 2023 22:37:32 +0100 Subject: [PATCH] fix failing test --- src/Kp2aAutofillParserTest/AutofillTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Kp2aAutofillParserTest/AutofillTest.cs b/src/Kp2aAutofillParserTest/AutofillTest.cs index fe4a44de..5141dcb0 100644 --- a/src/Kp2aAutofillParserTest/AutofillTest.cs +++ b/src/Kp2aAutofillParserTest/AutofillTest.cs @@ -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)); }