aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-08-19 12:34:30 +0200
committerJulien Lancelot <julien.lancelot@gmail.com>2013-08-19 12:34:30 +0200
commit88a9f3cd3247f2ec2e8d4bffea45bc3eed1298bc (patch)
tree7747ecdef4263dd5f58ec2f50ca97ffb77c7a17b /sonar-batch
parent54cdfd193ee3d13fec1bfb3436d48667a1de201d (diff)
downloadsonarqube-88a9f3cd3247f2ec2e8d4bffea45bc3eed1298bc.tar.gz
sonarqube-88a9f3cd3247f2ec2e8d4bffea45bc3eed1298bc.zip
SONAR-4475 Revert check of last admin removal
Diffstat (limited to 'sonar-batch')
-rw-r--r--sonar-batch/src/test/java/org/sonar/batch/scan/JsonReportTest.java4
1 files changed, 1 insertions, 3 deletions
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