Skip to content

Commit e4cb39c

Browse files
author
wanghaihua
committed
Modify according to comment.
1 parent d8e7106 commit e4cb39c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sql/core/src/test/scala/org/apache/spark/sql/internal/SQLConfSuite.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class SQLConfSuite extends QueryTest with SharedSQLContext {
115115
}
116116

117117
Seq("reset", s"reset ${SQLConf.GROUP_BY_ORDINAL.key}").foreach { resetCmd =>
118-
test(s"reset - public conf $resetCmd") {
118+
test(s"$resetCmd - public conf") {
119119
spark.sessionState.conf.clear()
120120
val original = spark.conf.get(SQLConf.GROUP_BY_ORDINAL)
121121
try {
@@ -133,7 +133,7 @@ class SQLConfSuite extends QueryTest with SharedSQLContext {
133133
}
134134

135135
Seq("reset", s"reset ${SQLConf.OPTIMIZER_MAX_ITERATIONS.key}").foreach { resetCmd =>
136-
test(s"reset - internal conf $resetCmd") {
136+
test(s"$resetCmd - internal conf") {
137137
spark.sessionState.conf.clear()
138138
val original = spark.conf.get(SQLConf.OPTIMIZER_MAX_ITERATIONS)
139139
try {
@@ -151,7 +151,7 @@ class SQLConfSuite extends QueryTest with SharedSQLContext {
151151
}
152152

153153
Seq("reset", s"reset $testKey").foreach { resetCmd =>
154-
test(s"reset - user-defined conf $resetCmd") {
154+
test(s"$resetCmd - user-defined conf") {
155155
spark.sessionState.conf.clear()
156156
try {
157157
assert(spark.conf.getOption(testKey).isEmpty)
@@ -167,7 +167,7 @@ class SQLConfSuite extends QueryTest with SharedSQLContext {
167167
}
168168

169169
Seq("reset", s"reset ${testKey}1 \t ${testKey}2 \t ").foreach { resetCmd =>
170-
test(s"reset - multiple conf $resetCmd") {
170+
test(s"$resetCmd - multiple conf") {
171171
spark.sessionState.conf.clear()
172172
val key1 = testKey + "1"
173173
val key2 = testKey + "2"

0 commit comments

Comments
 (0)