Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiaPispisa committed Jul 25, 2024
1 parent 369d48e commit 438efa1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .idea/libraries/Dart_Packages.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/src/printer/printer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import 'package:en_logger/en_logger.dart';
export './color.dart';
export './configuration.dart';

/// PrinterHandler log callback
typedef DeveloperLogCallback = void Function(
String message, {
DateTime? time,
Expand Down
2 changes: 1 addition & 1 deletion test/src/logger_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ void main() {
description: 'freezed serialized data',
),
];
final logger = EnLogger()
EnLogger()
..addHandler(mockHandler)
..debug(
'debug',
Expand Down
9 changes: 6 additions & 3 deletions test/src/printer_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,12 @@ void main() {
test(
'should create correctly',
() {
expect(() {
PrinterHandler();
}, returnsNormally);
expect(
() {
PrinterHandler();
},
returnsNormally,
);
},
);

Expand Down

0 comments on commit 438efa1

Please sign in to comment.