commit | fd18ec5885d309f213814d3488c1c365bdef3c5e | [log] [tgz] |
---|---|---|
author | Martin Probst <martin@probst.io> | Mon Jan 09 09:00:58 2017 +0000 |
committer | Martin Probst <martin@probst.io> | Mon Jan 09 09:00:58 2017 +0000 |
tree | 4d3dee4e6e26773b52383dfa26899c4dd5449125 | |
parent | d40bca431dfab7deae906fae9eea72dbdd81de2c [diff] [blame] |
clang-format: [JS] fix broken test. llvm-svn: 291429
diff --git a/clang/unittests/Format/FormatTestJS.cpp b/clang/unittests/Format/FormatTestJS.cpp index 12554a1..230717f 100644 --- a/clang/unittests/Format/FormatTestJS.cpp +++ b/clang/unittests/Format/FormatTestJS.cpp
@@ -859,7 +859,9 @@ "a = null\n" " return 1"); verifyFormat( - "x = {a: 1}\n" + "x = {\n" + " a: 1\n" + "}\n" "class Y {}", " x = {a : 1}\n" " class Y { }");