Skip to content

Commit 1534db3

Browse files
Fix formatting
1 parent 719157c commit 1534db3

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/test/java/com/stripe/net/ApiRequestParamsConverterTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ private static class HasStringInt64Param extends ApiRequestParams {
132132
public Long divideBy;
133133
}
134134

135-
136135
@Test
137136
public void testHasExtraParams() {
138137
ModelHasExtraParams params = new ModelHasExtraParams(ParamCode.ENUM_FOO);
@@ -299,7 +298,6 @@ public void testObjectMaps() {
299298
assertEquals(objBar.get("hello"), "world");
300299
}
301300

302-
303301
@Test
304302
public void testToMapWithStringInt64Params() {
305303
HasStringInt64Param params = new HasStringInt64Param();
@@ -316,7 +314,8 @@ public void testToMapWithStringInt64Params() {
316314
public void testFromJsonWithStringInt64ResourceField() {
317315
Gson gson = new GsonBuilder().create();
318316

319-
HasStringInt64Param resource = gson.fromJson("{\"divide_by\":\"123\"}", HasStringInt64Param.class);
317+
HasStringInt64Param resource =
318+
gson.fromJson("{\"divide_by\":\"123\"}", HasStringInt64Param.class);
320319

321320
TestCase.assertEquals(Long.valueOf(123L), resource.divideBy);
322321
}

0 commit comments

Comments
 (0)