Skip to content

Commit

Permalink
Remove redundant test case skipping for MongoDB
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr authored and hashhar committed Nov 22, 2021
1 parent 51023d8 commit a6bdf21
Showing 1 changed file with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
import org.testng.SkipException;
import org.testng.annotations.Test;

import java.util.Optional;

import static org.assertj.core.api.Assertions.assertThatThrownBy;

public abstract class BaseMongoDistributedQueries
Expand Down Expand Up @@ -87,16 +85,4 @@ public void testColumnName(String columnName)

super.testColumnName(columnName);
}

@Override
protected Optional<DataMappingTestSetup> filterDataMappingSmokeTestData(DataMappingTestSetup dataMappingTestSetup)
{
String typeName = dataMappingTestSetup.getTrinoTypeName();
if (typeName.equals("time")) {
// TODO this should either work or fail cleanly
return Optional.empty();
}

return Optional.of(dataMappingTestSetup);
}
}

0 comments on commit a6bdf21

Please sign in to comment.