Skip to content

Commit c863b2e

Browse files
committed
fix naming
1 parent 661824b commit c863b2e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: test/flagsmith_core_test.dart

+6-6
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ void main() {
5353
Flag.seed('test_feature_b', enabled: true)
5454
]);
5555
expect(created, isTrue);
56-
final all0 = await storageProvider.getAll();
57-
expect(all0, isNotEmpty);
56+
final all = await storageProvider.getAll();
57+
expect(all, isNotEmpty);
5858
expect(
59-
all0,
59+
all,
6060
const TypeMatcher<List<Flag>>().having(
6161
(p0) => p0
6262
.firstWhereOrNull((element) => element.key == 'test_feature_a'),
@@ -70,10 +70,10 @@ void main() {
7070
Flag.seed('test_feature_b', enabled: true)
7171
]);
7272
expect(created, isTrue);
73-
final all0 = await storageProvider.getAll();
74-
expect(all0, isNotEmpty);
73+
final all = await storageProvider.getAll();
74+
expect(all, isNotEmpty);
7575
expect(
76-
all0,
76+
all,
7777
const TypeMatcher<List<Flag>>().having(
7878
(p0) => p0
7979
.firstWhereOrNull((element) => element.key == 'test_feature_a'),

0 commit comments

Comments
 (0)