| Index: pkg/analysis_server/test/services/correction/name_suggestion_test.dart
|
| diff --git a/pkg/analysis_server/test/services/correction/name_suggestion_test.dart b/pkg/analysis_server/test/services/correction/name_suggestion_test.dart
|
| index 4d49775253894f65cde852f074aef9cef8218c50..deb386da59c935b55d569ccdb956b901a951d296 100644
|
| --- a/pkg/analysis_server/test/services/correction/name_suggestion_test.dart
|
| +++ b/pkg/analysis_server/test/services/correction/name_suggestion_test.dart
|
| @@ -335,22 +335,4 @@ main(p) {
|
| unorderedEquals(['goodbyeCruelWorld', 'cruelWorld', 'world2']));
|
| }
|
| }
|
| -
|
| - void test_getCamelWords_empty() {
|
| - expect(getCamelWords(''), unorderedEquals([]));
|
| - }
|
| -
|
| - void test_getCamelWords_multipleUpper() {
|
| - expect(getCamelWords('sortedHTMLNodes'),
|
| - unorderedEquals(['sorted', 'HTML', 'Nodes']));
|
| - }
|
| -
|
| - void test_getCamelWords_simpleCamel() {
|
| - expect(getCamelWords('mySimpleText'),
|
| - unorderedEquals(['my', 'Simple', 'Text']));
|
| - }
|
| -
|
| - void test_getCamelWords_simpleName() {
|
| - expect(getCamelWords('name'), unorderedEquals(['name']));
|
| - }
|
| }
|
|
|