Use 2-space continuation indent consistently in specs

This commit is contained in:
Max Brunsfeld 2015-07-27 18:18:58 -07:00
parent 31b2db12d2
commit 766e3bab2c
22 changed files with 862 additions and 759 deletions

View file

@ -14,10 +14,10 @@ describe("Node", []() {
ts_document_set_input_string(document, " [123, false, {\"x\": null}]");
root = ts_document_root_node(document);
AssertThat(ts_node_string(root), Equals(
"(DOCUMENT (array "
"(number) "
"(false) "
"(object (string) (null))))"));
"(DOCUMENT (array "
"(number) "
"(false) "
"(object (string) (null))))"));
});
after_each([&]() {