This is an automated email from the ASF dual-hosted git repository.
gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 285e97465a5 [MINOR][DOCS] Fix the variable name in the docs -
testing_pyspark.ipynb
285e97465a5 is described below
commit 285e97465a5365c2cc227c9ece32d51d7ebb0483
Author: huciaa <[email protected]>
AuthorDate: Wed Nov 1 08:37:15 2023 +0900
[MINOR][DOCS] Fix the variable name in the docs - testing_pyspark.ipynb
### What changes were proposed in this pull request?
I'm changing a variable name in one of the cells in the documentation
regarding pyspark testing.
### Why are the changes needed?
Currently the code won't run. This simple fix will make the code in the
documenatatnion usable.
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
I tested this code loccally with pytest and pyspark 3.5.0

### Was this patch authored or co-authored using generative AI tooling?
No
Closes #43610 from huciaa/fix_typo_in_pystest_doc.
Authored-by: huciaa <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
---
python/docs/source/getting_started/testing_pyspark.ipynb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/python/docs/source/getting_started/testing_pyspark.ipynb
b/python/docs/source/getting_started/testing_pyspark.ipynb
index afccbe4004c..3934c116763 100644
--- a/python/docs/source/getting_started/testing_pyspark.ipynb
+++ b/python/docs/source/getting_started/testing_pyspark.ipynb
@@ -318,7 +318,7 @@
" {\"name\": \"Eve A.\", \"age\": 28}] \n",
" \n",
" # Create a Spark DataFrame\n",
- " original_df = spark.createDataFrame(sample_data)\n",
+ " original_df = spark_fixture.createDataFrame(sample_data)\n",
" \n",
" # Apply the transformation function from before\n",
" transformed_df = remove_extra_spaces(original_df, \"name\")\n",
@@ -328,7 +328,7 @@
" {\"name\": \"Bob T.\", \"age\": 35}, \n",
" {\"name\": \"Eve A.\", \"age\": 28}]\n",
" \n",
- " expected_df = spark.createDataFrame(expected_data)\n",
+ " expected_df = spark_fixture.createDataFrame(expected_data)\n",
"\n",
" assertDataFrameEqual(transformed_df, expected_df)"
]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]