Skip to content

Commit

Permalink
[MINOR][PYTHON][TESTS] Call test_apply_schema_to_dict_and_rows in `…
Browse files Browse the repository at this point in the history
…test_apply_schema_to_row`

### What changes were proposed in this pull request?

This PR fixes the test `test_apply_schema_to_row` to call `test_apply_schema_to_row` instead of `test_apply_schema_to_dict_and_rows`. It was a mistake.

### Why are the changes needed?

To avoid a mistake when it's enabled in the future.

### Does this PR introduce _any_ user-facing change?

No, test-only

### How was this patch tested?

CI in this PR.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes apache#46631 from HyukjinKwon/minor-test-rename.

Authored-by: Hyukjin Kwon <gurwls223@apache.org>
Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
  • Loading branch information
HyukjinKwon committed May 17, 2024
1 parent 889820c commit 74a1a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyspark/sql/tests/connect/test_parity_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_apply_schema_to_dict_and_rows(self):

@unittest.skip("Spark Connect does not support RDD but the tests depend on them.")
def test_apply_schema_to_row(self):
super().test_apply_schema_to_dict_and_rows()
super().test_apply_schema_to_row()

@unittest.skip("Spark Connect does not support RDD but the tests depend on them.")
def test_create_dataframe_schema_mismatch(self):
Expand Down

0 comments on commit 74a1a76

Please sign in to comment.