Skip to content

Commit b992091

Browse files
authored
reenable test with SDK fix (flutter#13)
* reenable test with SDK fix * ignore analysis issue caused by scheduled_test API
1 parent abf4fae commit b992091

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/list_test.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ void main() {
305305
}),
306306
completion(unorderedEquals(
307307
[p.join("foo", "baz", "bang"), p.join("foo", "baz", "qux")])));
308-
}, skip: "Broken by sdk#28015.");
308+
});
309309

310310
test("lists a subdirectory that sometimes exists", () {
311311
d.dir("top", [
@@ -356,6 +356,9 @@ void syncAndAsync(callback(ListFn listFn)) {
356356
var glob = new Glob(pattern,
357357
recursive: recursive, caseSensitive: caseSensitive);
358358

359+
// TODO(kevmoo) - need to get off scheduled_test to fix this
360+
// https://github.com/dart-lang/glob/issues/14
361+
// ignore: return_of_invalid_type
359362
return glob
360363
.list(root: sandbox, followLinks: followLinks)
361364
.map((entity) => p.relative(entity.path, from: sandbox))

0 commit comments

Comments
 (0)