Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ueman committed Jul 30, 2024
1 parent cc9b821 commit cb473f6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions passkit/test/pkpass/event_type_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ void main() {
test('has correct images', () async {
final bytes = loadSample(PassType.eventTicket);

final pkPass = PkPass.fromBytes(bytes,
skipChecksumVerification: true, skipSignatureVerification: true);
final pkPass = PkPass.fromBytes(
bytes,
skipChecksumVerification: true,
skipSignatureVerification: true,
);
expect(pkPass.background, isNotNull);
expect(pkPass.background?.image1, isNotNull);
expect(pkPass.background?.image2, isNotNull);
Expand Down

0 comments on commit cb473f6

Please sign in to comment.