Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed Jul 19, 2023
1 parent bc50f34 commit 96f9f7e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,21 +64,21 @@ public class LintFunctionTest {
@Test
public void lintTable(final TestContext testContext) throws Exception {
final LintFunctionParameters args = new LintFunctionParameters();
args.setTableNameContains("AUTHORS");
args.setTableName("AUTHORS");
lintTable(testContext, args);
}

@Test
public void lintTableLike(final TestContext testContext) throws Exception {
final LintFunctionParameters args = new LintFunctionParameters();
args.setTableNameContains("auth");
args.setTableName("auth");
lintTable(testContext, args);
}

@Test
public void lintUnknownTable(final TestContext testContext) throws Exception {
final LintFunctionParameters args = new LintFunctionParameters();
args.setTableNameContains("NOT_A_TABLE");
args.setTableName("NOT_A_TABLE");
lintTable(testContext, args);
}

Expand Down

0 comments on commit 96f9f7e

Please sign in to comment.