From 2c6d2176bb8a287572888a67f6f81b1d8730b6f5 Mon Sep 17 00:00:00 2001 From: nazoking Date: Mon, 9 Nov 2015 13:57:26 +0900 Subject: [PATCH] fix space --- src/test/scala/gitbucket/core/api/JsonFormatSpec.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/scala/gitbucket/core/api/JsonFormatSpec.scala b/src/test/scala/gitbucket/core/api/JsonFormatSpec.scala index 6c0a6b777..23ec5ba19 100644 --- a/src/test/scala/gitbucket/core/api/JsonFormatSpec.scala +++ b/src/test/scala/gitbucket/core/api/JsonFormatSpec.scala @@ -17,7 +17,7 @@ class JsonFormatSpec extends Specification { d.set(2011,3,14,16,0,49) d.getTime } - def date(date:String):Date = { + def date(date:String): Date = { val f = new java.text.SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'") f.setTimeZone(TimeZone.getTimeZone("UTC")) f.parse(date)