Skip to content

Commit

Permalink
test commit with issues
Browse files Browse the repository at this point in the history
  • Loading branch information
samandmoore committed Jan 12, 2022
1 parent 45d8fd8 commit d47f4a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions lib/src/processing/models/problem.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:freezed_annotation/freezed_annotation.dart';

part 'problem.freezed.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/processing/models/report.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Report with _$Report {
/// Factory constructor to create a Report
factory Report({
/// The Suites in this report
required Iterable<Suite> suites,
required Iterable<Suite> suites

/// The optional timestamp of the tests
DateTime? timestamp,
Expand Down
2 changes: 1 addition & 1 deletion lib/src/processing/test_json_processor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class TestJsonProcessor {
throw UnsupportedError("First event was not a 'start' event");
}
final processorDelegate = _createProcessorDelegate(
protocolVersion: events.first['protocolVersion'] as String,
protocolVersion: events?.first['protocolVersion'] as String,
);
return processorDelegate.process(events);
}
Expand Down

0 comments on commit d47f4a1

Please sign in to comment.