We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2da67c3 commit 93aa335Copy full SHA for 93aa335
packages/hyper_storage/test/item_holder_edge_cases_test.dart
@@ -2,6 +2,7 @@ import 'package:hyper_storage/hyper_storage.dart';
2
import 'package:test/test.dart';
3
4
enum TestEnum { a, b, c }
5
+
6
enum ShortEnum { x, y }
7
8
void main() {
@@ -90,11 +91,13 @@ void main() {
90
91
'enumKey',
92
enumValues: ShortEnum.values,
93
),
- throwsA(isA<ArgumentError>().having(
94
- (e) => e.message,
95
- 'message',
96
- contains('already exists with a different type'),
97
- )),
+ throwsA(
+ isA<ArgumentError>().having(
+ (e) => e.message,
+ 'message',
98
+ contains('already exists with a different type'),
99
+ ),
100
101
);
102
});
103
0 commit comments