Skip to content

Commit

Permalink
Remove redundant override
Browse files Browse the repository at this point in the history
The superclass implementation is the same.
  • Loading branch information
findepi committed Apr 1, 2022
1 parent 3896251 commit 9acd481
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
import org.jdbi.v3.core.Handle;
import org.jdbi.v3.core.Jdbi;
import org.testng.SkipException;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;

import java.util.HashMap;
Expand Down Expand Up @@ -305,20 +304,6 @@ public void testCaseColumnNames(String tableName)
}
}

@Override
@DataProvider
public Object[][] testCaseColumnNamesDataProvider()
{
return new Object[][] {
{"TEST_STATS_MIXED_UNQUOTED_UPPER"},
{"test_stats_mixed_unquoted_lower"},
{"test_stats_mixed_uNQuoTeD_miXED"},
{"\"TEST_STATS_MIXED_QUOTED_UPPER\""},
{"\"test_stats_mixed_quoted_lower\""},
{"\"test_stats_mixed_QuoTeD_miXED\""},
};
}

@Override
@Test
public void testNumericCornerCases()
Expand Down

0 comments on commit 9acd481

Please sign in to comment.