Remove an @AwaitsFix on test in SQL (elastic/x-pack-elasticsearch#2719)
It has been fixed already, actually. Original commit: elastic/x-pack-elasticsearch@46c8dacc50
This commit is contained in:
parent
1cd6fb23ec
commit
9633b1d7bc
|
@ -7,7 +7,6 @@ package org.elasticsearch.xpack.qa.sql.security;
|
|||
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.xpack.qa.sql.jdbc.CsvSpecTestCase;
|
||||
import org.junit.Before;
|
||||
|
||||
import java.util.Properties;
|
||||
|
||||
|
@ -25,10 +24,4 @@ public class JdbcCsvSpecIT extends CsvSpecTestCase {
|
|||
protected Properties connectionProperties() {
|
||||
return JdbcConnectionIT.securityProperties();
|
||||
}
|
||||
|
||||
@Before
|
||||
public void skipShowTables() {
|
||||
// NOCOMMIT filter out tables starting with .
|
||||
assumeFalse("fails because we don't skip tables starting with .", testName.equals("ShowTables"));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,15 +5,12 @@
|
|||
*/
|
||||
package org.elasticsearch.xpack.qa.sql.security;
|
||||
|
||||
import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.xpack.qa.sql.jdbc.ShowTablesTestCase;
|
||||
|
||||
import java.util.Properties;
|
||||
|
||||
@AwaitsFix(bugUrl="https://github.com/elastic/x-pack-elasticsearch/issues/2074")
|
||||
public class JdbcShowTablesIT extends ShowTablesTestCase {
|
||||
// NOCOMMIT filter out tables starting with .
|
||||
@Override
|
||||
protected Settings restClientSettings() {
|
||||
return RestSqlIT.securitySettings();
|
||||
|
|
Loading…
Reference in New Issue