Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
khvn26 committed Oct 15, 2024
1 parent 661824b commit c863b2e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/flagsmith_core_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ void main() {
Flag.seed('test_feature_b', enabled: true)
]);
expect(created, isTrue);
final all0 = await storageProvider.getAll();
expect(all0, isNotEmpty);
final all = await storageProvider.getAll();
expect(all, isNotEmpty);
expect(
all0,
all,
const TypeMatcher<List<Flag>>().having(
(p0) => p0
.firstWhereOrNull((element) => element.key == 'test_feature_a'),
Expand All @@ -70,10 +70,10 @@ void main() {
Flag.seed('test_feature_b', enabled: true)
]);
expect(created, isTrue);
final all0 = await storageProvider.getAll();
expect(all0, isNotEmpty);
final all = await storageProvider.getAll();
expect(all, isNotEmpty);
expect(
all0,
all,
const TypeMatcher<List<Flag>>().having(
(p0) => p0
.firstWhereOrNull((element) => element.key == 'test_feature_a'),
Expand Down

0 comments on commit c863b2e

Please sign in to comment.