Description
pyspark/sql/tests/test_types.py:233 (TypesParityTests.test_infer_schema_not_enough_names) ['col1', '_2'] != ['col1'] Expected :['col1'] Actual :['col1', '_2'] <Click to see difference> self = <pyspark.sql.tests.connect.test_parity_types.TypesParityTests testMethod=test_infer_schema_not_enough_names> def test_infer_schema_not_enough_names(self): df = self.spark.createDataFrame([["a", "b"]], ["col1"]) > self.assertEqual(df.columns, ["col1", "_2"]) ../test_types.py:236: AssertionError