File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,10 @@ void main() {
53
53
Flag .seed ('test_feature_b' , enabled: true )
54
54
]);
55
55
expect (created, isTrue);
56
- final all0 = await storageProvider.getAll ();
57
- expect (all0 , isNotEmpty);
56
+ final all = await storageProvider.getAll ();
57
+ expect (all , isNotEmpty);
58
58
expect (
59
- all0 ,
59
+ all ,
60
60
const TypeMatcher <List <Flag >>().having (
61
61
(p0) => p0
62
62
.firstWhereOrNull ((element) => element.key == 'test_feature_a' ),
@@ -70,10 +70,10 @@ void main() {
70
70
Flag .seed ('test_feature_b' , enabled: true )
71
71
]);
72
72
expect (created, isTrue);
73
- final all0 = await storageProvider.getAll ();
74
- expect (all0 , isNotEmpty);
73
+ final all = await storageProvider.getAll ();
74
+ expect (all , isNotEmpty);
75
75
expect (
76
- all0 ,
76
+ all ,
77
77
const TypeMatcher <List <Flag >>().having (
78
78
(p0) => p0
79
79
.firstWhereOrNull ((element) => element.key == 'test_feature_a' ),
You can’t perform that action at this time.
0 commit comments