Skip to content

Commit 3a9f5ff

Browse files
committed
Address review comments.
1 parent 0425609 commit 3a9f5ff

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

webdev/test/e2e_test.dart

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,9 @@ void main() {
7171
expect(smokeYaml['environment']['sdk'],
7272
equals(webdevYaml['environment']['sdk']));
7373
expect(
74-
VersionConstraint.parse(smokeYaml['dev_dependencies']['build_runner'])
75-
.union(buildRunnerConstraint)
76-
.isEmpty,
77-
false);
74+
buildRunnerConstraint.allowsAny(VersionConstraint.parse(
75+
smokeYaml['dev_dependencies']['build_runner'])),
76+
true);
7877
expect(smokeYaml['dev_dependencies']['build_web_compilers'],
7978
equals(buildWebCompilersConstraint.toString()));
8079
});

0 commit comments

Comments
 (0)