Skip to content

Commit

Permalink
fixup! feat: introduce NotReadableException
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Jan 27, 2024
1 parent ce5a91d commit fe5d206
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/core/exceptions_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@ void main() {
DiscoveryException("test").toString(),
"DiscoveryException: test",
);

expect(
NotReadableException("test").toString(),
"NotReadableException: test",
);
});
});
}

0 comments on commit fe5d206

Please sign in to comment.