From e2603ea57e4a20a8726347e56114d22ed56980ca Mon Sep 17 00:00:00 2001 From: Piotr Findeisen Date: Mon, 20 May 2024 13:15:54 +0200 Subject: [PATCH] Fix test comment typo --- .../trino/plugin/deltalake/BaseDeltaFailureRecoveryTest.java | 4 ++-- .../trino/plugin/iceberg/BaseIcebergFailureRecoveryTest.java | 4 ++-- .../java/io/trino/plugin/phoenix5/TestingPhoenixServer.java | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugin/trino-delta-lake/src/test/java/io/trino/plugin/deltalake/BaseDeltaFailureRecoveryTest.java b/plugin/trino-delta-lake/src/test/java/io/trino/plugin/deltalake/BaseDeltaFailureRecoveryTest.java index 67f821487be3..e7cea9a7fa85 100644 --- a/plugin/trino-delta-lake/src/test/java/io/trino/plugin/deltalake/BaseDeltaFailureRecoveryTest.java +++ b/plugin/trino-delta-lake/src/test/java/io/trino/plugin/deltalake/BaseDeltaFailureRecoveryTest.java @@ -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 setupQuery = Optional.of("CREATE TABLE AS SELECT * FROM orders"); @@ -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 setupQuery = Optional.of("CREATE TABLE
AS SELECT * FROM orders"); diff --git a/plugin/trino-iceberg/src/test/java/io/trino/plugin/iceberg/BaseIcebergFailureRecoveryTest.java b/plugin/trino-iceberg/src/test/java/io/trino/plugin/iceberg/BaseIcebergFailureRecoveryTest.java index c9f8d30f6212..2a5c1728a666 100644 --- a/plugin/trino-iceberg/src/test/java/io/trino/plugin/iceberg/BaseIcebergFailureRecoveryTest.java +++ b/plugin/trino-iceberg/src/test/java/io/trino/plugin/iceberg/BaseIcebergFailureRecoveryTest.java @@ -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 setupQuery = Optional.of("CREATE TABLE
AS SELECT * FROM orders"); @@ -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 setupQuery = Optional.of("CREATE TABLE
AS SELECT * FROM orders"); diff --git a/plugin/trino-phoenix5/src/test/java/io/trino/plugin/phoenix5/TestingPhoenixServer.java b/plugin/trino-phoenix5/src/test/java/io/trino/plugin/phoenix5/TestingPhoenixServer.java index 4cb271689285..618b793e4bc3 100644 --- a/plugin/trino-phoenix5/src/test/java/io/trino/plugin/phoenix5/TestingPhoenixServer.java +++ b/plugin/trino-phoenix5/src/test/java/io/trino/plugin/phoenix5/TestingPhoenixServer.java @@ -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);