Skip to content

Commit

Permalink
Fix test comment typo
Browse files Browse the repository at this point in the history
  • Loading branch information
findepi committed May 20, 2024
1 parent 5441a02 commit 14aa26b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected boolean areWriteRetriesSupported()
@Override
protected void testDelete()
{
// Test method is overriden because method from superclass assumes more complex plan for `DELETE` query.
// Test method is overridden because method from superclass assumes more complex plan for `DELETE` query.
// Assertions do not play well if plan consists of just two fragments.

Optional<String> setupQuery = Optional.of("CREATE TABLE <table> AS SELECT * FROM orders");
Expand Down Expand Up @@ -170,7 +170,7 @@ protected void testDelete()
@Override
protected void testUpdate()
{
// Test method is overriden because method from superclass assumes more complex plan for `UPDATE` query.
// Test method is overridden because method from superclass assumes more complex plan for `UPDATE` query.
// Assertions do not play well if plan consists of just two fragments.

Optional<String> setupQuery = Optional.of("CREATE TABLE <table> AS SELECT * FROM orders");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected void testCreatePartitionedTable()
@Override
protected void testDelete()
{
// Test method is overriden because method from superclass assumes more complex plan for `DELETE` query.
// Test method is overridden because method from superclass assumes more complex plan for `DELETE` query.
// Assertions do not play well if plan consists of just two fragments.

Optional<String> setupQuery = Optional.of("CREATE TABLE <table> AS SELECT * FROM orders");
Expand Down Expand Up @@ -133,7 +133,7 @@ protected void testDelete()
@Override
protected void testUpdate()
{
// Test method is overriden because method from superclass assumes more complex plan for `UPDATE` query.
// Test method is overridden because method from superclass assumes more complex plan for `UPDATE` query.
// Assertions do not play well if plan consists of just two fragments.

Optional<String> setupQuery = Optional.of("CREATE TABLE <table> AS SELECT * FROM orders");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private TestingPhoenixServer()
securityLogger = java.util.logging.Logger.getLogger("SecurityLogger.org.apache");
securityLogger.setLevel(Level.SEVERE);
// to squelch the SecurityLogger,
// instantiate logger with config above before config is overriden again in HBase test franework
// instantiate logger with config above before config is overridden again in HBase test franework
org.apache.commons.logging.LogFactory.getLog("SecurityLogger.org.apache.hadoop.hbase.server");
this.conf.set("hbase.security.logger", "ERROR");
this.conf.setInt(MASTER_INFO_PORT, -1);
Expand Down

0 comments on commit 14aa26b

Please sign in to comment.