Skip to content

Commit

Permalink
Rename test case in TestDropTableTask
Browse files Browse the repository at this point in the history
  • Loading branch information
krvikash committed Dec 22, 2022
1 parent 61543a2 commit 470843c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void testDropTableIfExistsWithoutExistingSchema()
}

@Test
public void testDropNotExistingTableIfExists()
public void testDropTableIfExistsWithoutExistingTable()
{
QualifiedName tableName = qualifiedName("not_existing_table");

Expand All @@ -93,7 +93,7 @@ public void testDropTableOnView()
}

@Test
public void testDropTableOnViewIfExists()
public void testDropTableIfExistsOnView()
{
QualifiedName viewName = qualifiedName("existing_view");
metadata.createView(testSession, asQualifiedObjectName(viewName), someView(), false);
Expand All @@ -115,7 +115,7 @@ public void testDropTableOnMaterializedView()
}

@Test
public void testDropTableOnMaterializedViewIfExists()
public void testDropTableIfExistsOnMaterializedView()
{
QualifiedName viewName = qualifiedName("existing_materialized_view");
metadata.createMaterializedView(testSession, asQualifiedObjectName(viewName), someMaterializedView(), false, false);
Expand Down

0 comments on commit 470843c

Please sign in to comment.