Skip to content

Commit

Permalink
Attempt to fix failures on the windows bot
Browse files Browse the repository at this point in the history
Change-Id: I5fcda7cc11979dcde7948ffa4cfa53a5ee4e07e2
Reviewed-on: https://dart-review.googlesource.com/68162
Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
  • Loading branch information
bwilkerson authored and commit-bot@chromium.org committed Aug 2, 2018
1 parent bbfc465 commit f625490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/analysis_server/test/domain_completion_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ main() {
test_local_override() {
newFile('/libA.dart', content: 'class A {m() {}}');
addTestFile('''
import '/libA.dart';
import '../../libA.dart';
class B extends A {
m() {}
x() {^}
Expand Down Expand Up @@ -720,7 +720,7 @@ main() {
test_overrides() {
newFile('/libA.dart', content: 'class A {m() {}}');
addTestFile('''
import '/libA.dart';
import '../../libA.dart';
class B extends A {m() {^}}
''');
return getSuggestions().then((_) {
Expand Down

0 comments on commit f625490

Please sign in to comment.