Skip to content

Commit

Permalink
fix(dashboard): count tests null status
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco2002 committed Jan 15, 2025
1 parent 3aa1040 commit 3717b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/src/components/TestsTable/TestsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export function TestsTable({
groups[group].skip_tests++;
break;
default:
if (!e.status) groups[group].null_tests++;
groups[group].null_tests++;
}
});
return Object.values(groups);
Expand Down

0 comments on commit 3717b43

Please sign in to comment.