Skip to content

Commit

Permalink
Remove unneeded condtion
Browse files Browse the repository at this point in the history
  • Loading branch information
pdenert committed Nov 4, 2024
1 parent d0ac370 commit e9388df
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/patrol_log/lib/src/patrol_log_reader.dart
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,6 @@ class PatrolLogReader {
(entry.status == TestEntryStatus.skip ||
entry.status == TestEntryStatus.start)) {
_singleEntries.add(PatrolSingleTestEntry([entry]));
} else if (entry is TestEntry) {
final lastEntry = _singleEntries.last;
lastEntry.entries.add(entry);
} else {
final lastEntry = _singleEntries.last;
lastEntry.entries.add(entry);
Expand Down

0 comments on commit e9388df

Please sign in to comment.