From ae432ca8a20a5b6cbd11e573affce0e9ddf0550b Mon Sep 17 00:00:00 2001 From: Ian Hickson Date: Thu, 6 Aug 2020 18:46:03 -0700 Subject: [PATCH] Add a comment with a reference to issue 62919 (LUCI should run the tests in a directory that contains a space character) to this skipped test. (#62920) --- dev/bots/test/sdk_directory_has_space_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/bots/test/sdk_directory_has_space_test.dart b/dev/bots/test/sdk_directory_has_space_test.dart index eeca11d4a84..8a4704f7e51 100644 --- a/dev/bots/test/sdk_directory_has_space_test.dart +++ b/dev/bots/test/sdk_directory_has_space_test.dart @@ -17,5 +17,5 @@ void main() { expect(expectedName, contains(' ')); final List parts = path.split(Directory.current.absolute.path); expect(parts.reversed.take(3), ['bots', 'dev', expectedName]); - }, skip: true); + }, skip: true); // https://github.com/flutter/flutter/issues/62919 }