Skip to content

Commit c391212

Browse files
committed
fix test
1 parent 9d10239 commit c391212

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/core/src/test/scala/org/apache/spark/sql/connector/DataSourceV2SQLSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1982,7 +1982,7 @@ class DataSourceV2SQLSuite
19821982
withTempView("v") {
19831983
sql("create global temp view v as select 1")
19841984
val e = intercept[AnalysisException](sql("COMMENT ON TABLE global_temp.v IS NULL"))
1985-
assert(e.getMessage.contains("global_temp.v is a view not table."))
1985+
assert(e.getMessage.contains("global_temp.v is a temp view not table."))
19861986
}
19871987
}
19881988

0 commit comments

Comments
 (0)