Skip to content

Commit

Permalink
Fixing pom and test names
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Jacobs committed Mar 13, 2020
1 parent 2b93368 commit 2b2664f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void typicalRenameTable() throws Exception {
}

@Test
public void renameTableExceptionThrown1() throws Exception {
public void renameToTableException() throws Exception {
Table toTableTemp = new Table(toTable);
toTableTemp.setTableName(TO_TABLE_NAME_TEMP);
TException toBeThrown = new TException();
Expand All @@ -94,7 +94,7 @@ public void renameTableExceptionThrown1() throws Exception {
}

@Test
public void renameTableExceptionThrown2() throws Exception {
public void renameFromTableException() throws Exception {
Table toTableTemp = new Table(toTable);
toTableTemp.setTableName(TO_TABLE_NAME_TEMP);
TException toBeThrown = new TException();
Expand Down
4 changes: 4 additions & 0 deletions circus-train-integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,14 @@
<dependency>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-avro</artifactId>
<version>1.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<version>1.7.7</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down

1 comment on commit 2b2664f

@massdosage
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

Please sign in to comment.