Skip to content

Commit e006281

Browse files
committed
fix ut
1 parent 5d8e916 commit e006281

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • extensions/spark/kyuubi-spark-connector-hive/src/test/scala/org/apache/kyuubi/spark/connector/hive

extensions/spark/kyuubi-spark-connector-hive/src/test/scala/org/apache/kyuubi/spark/connector/hive/HiveCatalogSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ class HiveCatalogSuite extends KyuubiHiveTest {
354354
properties.put(TableCatalog.OPTION_PREFIX + "field.delim", ",")
355355
properties.put("field.delim", ",")
356356
properties.put(TableCatalog.PROP_EXTERNAL, "true")
357-
properties.put(TableCatalog.PROP_LOCATION, "file:/absolute/path")
357+
properties.put(TableCatalog.PROP_LOCATION, "file:/tmp/path")
358358
properties.put("foo", "bar")
359359
assert(!catalog.tableExists(testIdent))
360360

@@ -365,7 +365,7 @@ class HiveCatalogSuite extends KyuubiHiveTest {
365365
properties).asInstanceOf[HiveTable]
366366

367367
assert(table.catalogTable.tableType === CatalogTableType.EXTERNAL)
368-
assert(table.catalogTable.location.toString === "file:/absolute/path")
368+
assert(table.catalogTable.location.toString === "file:/tmp/path")
369369

370370
assert(Set(
371371
"hive.serde",

0 commit comments

Comments
 (0)