diff --git a/presto-product-tests/src/main/java/io/prestosql/tests/hive/TestHiveTransactionalTable.java b/presto-product-tests/src/main/java/io/prestosql/tests/hive/TestHiveTransactionalTable.java index 655411bec06e..afa632b5891e 100644 --- a/presto-product-tests/src/main/java/io/prestosql/tests/hive/TestHiveTransactionalTable.java +++ b/presto-product-tests/src/main/java/io/prestosql/tests/hive/TestHiveTransactionalTable.java @@ -100,7 +100,7 @@ public void testReadFullAcidBucketedV2() private void doTestReadFullAcid(boolean isPartitioned, BucketingType bucketingType) { if (getHiveVersionMajor() < 3) { - throw new SkipException("Presto Hive transactional tables are supported with Hive version 3 or above"); + throw new SkipException("Hive transactional tables are supported with Hive version 3 or above"); } try (TemporaryHiveTable table = TemporaryHiveTable.temporaryHiveTable(tableName("read_full_acid", isPartitioned, bucketingType))) { @@ -147,7 +147,7 @@ private void doTestReadFullAcid(boolean isPartitioned, BucketingType bucketingTy public void testReadInsertOnly(boolean isPartitioned, BucketingType bucketingType) { if (getHiveVersionMajor() < 3) { - throw new SkipException("Presto Hive transactional tables are supported with Hive version 3 or above"); + throw new SkipException("Hive transactional tables are supported with Hive version 3 or above"); } try (TemporaryHiveTable table = TemporaryHiveTable.temporaryHiveTable(tableName("insert_only", isPartitioned, bucketingType))) {