Skip to content

Commit f625490

Browse files
bwilkersoncommit-bot@chromium.org
authored andcommitted
Attempt to fix failures on the windows bot
Change-Id: I5fcda7cc11979dcde7948ffa4cfa53a5ee4e07e2 Reviewed-on: https://dart-review.googlesource.com/68162 Commit-Queue: Brian Wilkerson <[email protected]> Reviewed-by: Konstantin Shcheglov <[email protected]>
1 parent bbfc465 commit f625490

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/analysis_server/test/domain_completion_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,7 @@ main() {
649649
test_local_override() {
650650
newFile('/libA.dart', content: 'class A {m() {}}');
651651
addTestFile('''
652-
import '/libA.dart';
652+
import '../../libA.dart';
653653
class B extends A {
654654
m() {}
655655
x() {^}
@@ -720,7 +720,7 @@ main() {
720720
test_overrides() {
721721
newFile('/libA.dart', content: 'class A {m() {}}');
722722
addTestFile('''
723-
import '/libA.dart';
723+
import '../../libA.dart';
724724
class B extends A {m() {^}}
725725
''');
726726
return getSuggestions().then((_) {

0 commit comments

Comments
 (0)