strategy.setIndentPrefs(new TestIndentPrefs(true, 4));
String doc = "" +
"a = (1, \n" +
" 2,"; //should keep this indent, and not go to the opening bracket indent.
DocCmd docCmd = new DocCmd(doc.length(), 0, "\n");
strategy.customizeDocumentCommand(new Document(doc), docCmd);
String expected = "\n ";
assertEquals(expected, docCmd.text);
}