| Index: tools/test.dart
|
| diff --git a/tools/test.dart b/tools/test.dart
|
| index 12cff100c5a64c6acbc267704e242cb41a0f82d5..1f88fd7c3534bbefd82c0724e995c732f00761d2 100755
|
| --- a/tools/test.dart
|
| +++ b/tools/test.dart
|
| @@ -104,9 +104,9 @@ main() {
|
| List settings = ['compiler', 'runtime', 'mode', 'arch']
|
| .mappedBy((name) => conf[name]).toList();
|
| if (conf['checked']) settings.add('checked');
|
| - output_words.add(Strings.join(settings, '_'));
|
| + output_words.add(settings.join('_'));
|
| }
|
| - print(Strings.join(output_words, ' '));
|
| + print(output_words.join(' '));
|
| }
|
|
|
| // Start global http servers that serve the entire dart repo.
|
|
|