Skip to content

Commit 08fceef

Browse files
committed
test name
1 parent 981034c commit 08fceef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyspark/sql/tests/test_dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def test_self_join_IV(self):
148148
self.assertTrue(df3.columns, ["id", "value", "id", "value"])
149149
self.assertTrue(df3.count() == 20)
150150

151-
def test_self_join_V(self):
151+
def test_lateral_column_alias(self):
152152
df1 = self.spark.range(10).select(
153153
(col("id") + lit(1)).alias("x"), (col("x") + lit(1)).alias("y")
154154
)

0 commit comments

Comments
 (0)