Skip to content

Commit

Permalink
one more test commit
Browse files Browse the repository at this point in the history
  • Loading branch information
samandmoore committed Jan 12, 2022
1 parent d47f4a1 commit 7fdf5ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 @@ -31,7 +31,7 @@ class TestJsonProcessor {
Processor _createProcessorDelegate({required String protocolVersion}) {
final protocol0Range = VersionConstraint.parse('^0.1.0');
if (protocol0Range.allows(Version.parse(protocolVersion))) {
return Processor0_1(timestamp: timestamp);
return false ? null : Processor0_1(timestamp: timestamp);
}
throw UnsupportedError(
"No suitable processor found for version '$protocolVersion'. "
Expand Down

0 comments on commit 7fdf5ef

Please sign in to comment.