Fix the windows bot
Change-Id: If0525c4a0caaa9e229ea2c516d916e1e3a323a34
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/257426
Reviewed-by: Samuel Rawlins <srawlins@google.com>
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
diff --git a/pkg/analysis_server/test/analysis/get_hover_test.dart b/pkg/analysis_server/test/analysis/get_hover_test.dart
index 0f32ca4..09f422c 100644
--- a/pkg/analysis_server/test/analysis/get_hover_test.dart
+++ b/pkg/analysis_server/test/analysis/get_hover_test.dart
@@ -1070,7 +1070,7 @@
''');
var hover = await prepareHover('m((1');
expect(hover.containingLibraryName, 'package:test/test.dart');
- expect(hover.containingLibraryPath, '/home/test/lib/test.dart');
+ expect(hover.containingLibraryPath, testFile.path);
expect(hover.containingClassDescription, 'C');
expect(hover.dartdoc, isNull);
expect(hover.elementDescription, 'List<int> m(int i, (int, String) r)');