diff options
Diffstat (limited to 'clang/unittests/Format/SortImportsTestJS.cpp')
| -rw-r--r-- | clang/unittests/Format/SortImportsTestJS.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/unittests/Format/SortImportsTestJS.cpp b/clang/unittests/Format/SortImportsTestJS.cpp index 17e73b08554..cc408ca9da7 100644 --- a/clang/unittests/Format/SortImportsTestJS.cpp +++ b/clang/unittests/Format/SortImportsTestJS.cpp @@ -92,12 +92,12 @@ TEST_F(SortImportsTestJS, SeparateMainCodeBody) { TEST_F(SortImportsTestJS, Comments) { verifySort("/** @fileoverview This is a great file. */\n" "// A very important import follows.\n" - "import {sym} from 'a'; /* more comments */\n" - "import {sym} from 'b'; // from //foo:bar\n", + "import {sym} from 'a'; /* more comments */\n" + "import {sym} from 'b'; // from //foo:bar\n", "/** @fileoverview This is a great file. */\n" - "import {sym} from 'b'; // from //foo:bar\n" + "import {sym} from 'b'; // from //foo:bar\n" "// A very important import follows.\n" - "import {sym} from 'a'; /* more comments */\n"); + "import {sym} from 'a'; /* more comments */\n"); } TEST_F(SortImportsTestJS, SortStar) { |

