diff --git a/Results/Output/Printers/Table.cs b/Results/Output/Printers/Table.cs index ae4781949..1618dd357 100644 --- a/Results/Output/Printers/Table.cs +++ b/Results/Output/Printers/Table.cs @@ -63,7 +63,7 @@ namespace Results.Output.Printers /// true when empty public bool IsEmpty() { - return (RowsCount == 0 || Rows[0].Length == 0); + return (Rows == null || RowsCount == 0 || Rows[0] == null || Rows[0].Length == 0); }