Skip to content

Commit 52067a3

Browse files
committed
Fix assert.
1 parent 582509b commit 52067a3

File tree

1 file changed

+1
-1
lines changed
  • sql/core/src/test/scala/org/apache/spark/sql/execution/command

1 file changed

+1
-1
lines changed

sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2052,7 +2052,7 @@ abstract class DDLSuite extends QueryTest with SQLTestUtils {
20522052

20532053
val fileStatus2 = fs.getFileStatus(tablePath)
20542054
if (ignore) {
2055-
assert(fileStatus2.getPermission().toString() == "rwxr-xr-x")
2055+
assert(fileStatus2.getPermission().toString() != "rwxrwxrwx")
20562056
} else {
20572057
assert(fileStatus2.getPermission().toString() == "rwxrwxrwx")
20582058
}

0 commit comments

Comments
 (0)