From 88a9f3cd3247f2ec2e8d4bffea45bc3eed1298bc Mon Sep 17 00:00:00 2001 From: Julien Lancelot Date: Mon, 19 Aug 2013 12:34:30 +0200 Subject: SONAR-4475 Revert check of last admin removal --- sonar-batch/src/test/java/org/sonar/batch/scan/JsonReportTest.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sonar-batch') diff --git a/sonar-batch/src/test/java/org/sonar/batch/scan/JsonReportTest.java b/sonar-batch/src/test/java/org/sonar/batch/scan/JsonReportTest.java index c40f3aa54ca..ce265bcfce2 100644 --- a/sonar-batch/src/test/java/org/sonar/batch/scan/JsonReportTest.java +++ b/sonar-batch/src/test/java/org/sonar/batch/scan/JsonReportTest.java @@ -23,7 +23,6 @@ import com.google.common.collect.Lists; import org.json.JSONException; import org.junit.After; import org.junit.Before; -import org.junit.Ignore; import org.junit.Test; import org.junit.rules.TemporaryFolder; import org.skyscreamer.jsonassert.JSONAssert; @@ -85,7 +84,6 @@ public class JsonReportTest { } @Test - @Ignore public void should_write_json() throws JSONException { DefaultIssue issue = new DefaultIssue() .setKey("200") @@ -109,7 +107,7 @@ public class JsonReportTest { jsonReport.writeJson(writer); JSONAssert.assertEquals(TestUtils.getResourceContent("/org/sonar/batch/scan/JsonReportTest/report.json"), - writer.toString(), false); + writer.toString(), false); } @Test -- cgit v1.2.3