Removed failing test in MySQLTest

This commit is contained in:
Rsl1122 2018-12-26 21:44:59 +02:00
parent 1225902347
commit 5403f78a94
2 changed files with 7 additions and 7 deletions

View File

@ -12,6 +12,13 @@ allprojects {
group "com.djrapitops"
version "4.6.0-SNAPSHOT"
test {
testLogging {
events "passed", "failed"
exceptionFormat "full"
}
}
}
subprojects {

View File

@ -3,10 +3,8 @@ package com.djrapitops.plan.system.database.databases;
import com.djrapitops.plan.system.settings.config.PlanConfig;
import com.djrapitops.plan.system.settings.paths.DatabaseSettings;
import org.junit.BeforeClass;
import org.junit.Test;
import utilities.CIProperties;
import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeTrue;
/**
@ -33,9 +31,4 @@ public class MySQLTest extends CommonDBTest {
handleSetup("MySQL");
}
@Test
public void failingTest() {
assertTrue(false);
}
}