File tree Expand file tree Collapse file tree
src/test/java/com/stripe/net Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments