Skip to content

Commit

Permalink
call general super
Browse files Browse the repository at this point in the history
  • Loading branch information
HyukjinKwon committed May 3, 2024
1 parent c8d13e8 commit 4b52c51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/pyspark/pandas/tests/connect/test_parity_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class UtilsParityTests(UtilsTestsMixin, PandasOnSparkTestUtils, ReusedConnectTes
"SPARK_SKIP_CONNECT_COMPAT_TESTS" in os.environ, "Failed with different Client <> Server"
)
def test_assert_approx_equal_decimaltype_custom_rtol_pass(self):
super(UtilsParityTests, self).test_assert_approx_equal_decimaltype_custom_rtol_pass()
super().test_assert_approx_equal_decimaltype_custom_rtol_pass()


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion python/pyspark/sql/tests/connect/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ConnectUtilsTests(ReusedConnectTestCase, UtilsTestsMixin):
"SPARK_SKIP_CONNECT_COMPAT_TESTS" in os.environ, "Failed with different Client <> Server"
)
def test_assert_approx_equal_decimaltype_custom_rtol_pass(self):
super(ConnectUtilsTests, self).test_assert_approx_equal_decimaltype_custom_rtol_pass()
super().test_assert_approx_equal_decimaltype_custom_rtol_pass()


if __name__ == "__main__":
Expand Down

0 comments on commit 4b52c51

Please sign in to comment.