Skip to content

Commit

Permalink
fix broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tianhao-Gu committed Jun 6, 2024
1 parent e9fecd7 commit 4378c18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/src/spark/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def test_get_base_spark_conf():
assert isinstance(result, SparkConf)
assert result.get("spark.master") == expected_master_url
assert result.get("spark.app.name") == expected_app_name
assert result.get("spark.executor.cores") == executor_cores
assert result.get("spark.executor.cores") == str(executor_cores)


def test_get_base_spark_conf_with_env():
Expand All @@ -115,4 +115,4 @@ def test_get_base_spark_conf_with_env():
assert isinstance(result, SparkConf)
assert result.get("spark.master") == custom_master_url
assert result.get("spark.app.name") == app_name
assert result.get("spark.executor.cores") == executor_cores
assert result.get("spark.executor.cores") == str(executor_cores)

0 comments on commit 4378c18

Please sign in to comment.