From 6f2fed4a5897da8721148fcf2c464654cf91eefd Mon Sep 17 00:00:00 2001 From: Vincent <97131062+vincbeck@users.noreply.github.com> Date: Wed, 2 Oct 2024 13:14:20 -0400 Subject: [PATCH] Rename wrongly named test (#42667) --- contributing-docs/testing/unit_tests.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributing-docs/testing/unit_tests.rst b/contributing-docs/testing/unit_tests.rst index cc6513eaa2e5..cd0b9ab00bf4 100644 --- a/contributing-docs/testing/unit_tests.rst +++ b/contributing-docs/testing/unit_tests.rst @@ -1188,7 +1188,7 @@ are not part of the public API. We deal with it in one of the following ways: @pytest.mark.skipif(not AIRFLOW_V_2_8_PLUS, reason="The tests should be skipped for Airflow < 2.8") - def some_test_that_only_works_for_airflow_2_7_plus(): + def some_test_that_only_works_for_airflow_2_8_plus(): pass 4) Sometimes, the tests should only be run when airflow is installed from the sources in main.