Skip to content

Commit

Permalink
#2529. Fix and enable Iterable/forEach_A03_t01 (#2532)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrekhov authored Feb 9, 2024
1 parent 80711f4 commit 8d853f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions LibTest/core/Iterable/allTests.lib.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import "fold_A01_t01.test.dart" as fold_A01_t02;
import "forEach_A01_t01.test.dart" as forEach_A01_t01;
import "forEach_A01_t02.test.dart" as forEach_A01_t02;
import "forEach_A02_t01.test.dart" as forEach_A02_t01;
import "forEach_A03_t01.test.dart" as forEach_A03_t01;
import "isEmpty_A01_t01.test.dart" as isEmpty_A01_t01;
import "isNotEmpty_A01_t01.test.dart" as isNotEmpty_A01_t01;
import "iterator_A01_t01.test.dart" as iterator_A01_t01;
Expand Down Expand Up @@ -128,6 +129,7 @@ test(Iterable create([Iterable? content]), {bool isSet = false,
forEach_A01_t01.test(create);
forEach_A01_t02.test(create);
forEach_A02_t01.test(create);
forEach_A03_t01.test(create);
isEmpty_A01_t01.test(create);
isNotEmpty_A01_t01.test(create);
iterator_A01_t01.test(create, isSet: isSet);
Expand Down
2 changes: 1 addition & 1 deletion LibTest/core/Iterable/forEach_A03_t01.test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
library forEach_A03_t01;
import "../../../Utils/expect.dart";

check(List a, predicate(var e), exc) {
check(Iterable a, predicate(var e), exc) {
int actualCount = 0;
Expect.throws(
() {
Expand Down

0 comments on commit 8d853f7

Please sign in to comment.