Yikun commented on PR #37888:
URL: https://github.com/apache/spark/pull/37888#issuecomment-1248987419
```
test_repeat
(pyspark.pandas.tests.test_spark_functions.SparkFunctionsTests) ... FAIL
(0.052s)
======================================================================
FAIL [0.052s]: test_repeat
(pyspark.pandas.tests.test_spark_functions.SparkFunctionsTests)
----------------------------------------------------------------------
Traceback (most recent call last):
File
"/__w/spark/spark/python/pyspark/pandas/tests/test_spark_functions.py", line
28, in test_repeat
self.assertTrue(spark_column_equals(SF.repeat(F.lit(1), 2),
F.repeat(F.lit(1), 2)))
AssertionError: False is not true
----------------------------------------------------------------------
Ran 1 test in 8.471s
```
Still failed due to `test_repeat`, Initial invistigation:
```
F.repeat(F.lit(1), 2).__dict__
Out[3]: {'_jc': JavaObject id=o50}
SF.repeat(F.lit(1), 2).__dict__
Out[4]: {'_jc': JavaObject id=o54}
```
According to
https://github.com/apache/spark/pull/37888#discussion_r971408190 , Looks like
we need to remove this test?
```python
class SparkFunctionsTests(PandasOnSparkTestCase):
def test_repeat(self):
# TODO: Placeholder
pass
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]