DiffPreferencesIT: Fix case of method names

Change-Id: I5cf672c433978acdd6862ddae0da9329f0ed3cbf
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
Edwin Kempin
2016-06-03 13:33:40 +02:00
parent a8becd7b0d
commit 7a3c5c1184

View File

@@ -28,13 +28,13 @@ import java.lang.reflect.Field;
public class DiffPreferencesIT extends AbstractDaemonTest {
@Test
public void GetDiffPreferences() throws Exception {
public void getDiffPreferences() throws Exception {
DiffPreferencesInfo result = get();
assertPrefsEqual(result, DiffPreferencesInfo.defaults());
}
@Test
public void SetDiffPreferences() throws Exception {
public void setDiffPreferences() throws Exception {
int newLineLength = DiffPreferencesInfo.defaults().lineLength + 10;
DiffPreferencesInfo update = new DiffPreferencesInfo();
update.lineLength = newLineLength;