You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/06/26 09:19:47 UTC

[airflow] branch master updated: Fix typo in test_views.py (#9522)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/master by this push:
     new 05586d6  Fix typo in test_views.py (#9522)
05586d6 is described below

commit 05586d66572a990a802c4186933bfe41624e4947
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Fri Jun 26 10:19:18 2020 +0100

    Fix typo in test_views.py (#9522)
    
    "parmeters_only" -> "parameters_only"
---
 tests/www/test_views.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/www/test_views.py b/tests/www/test_views.py
index 792a6fb..e45d588 100644
--- a/tests/www/test_views.py
+++ b/tests/www/test_views.py
@@ -1505,7 +1505,7 @@ class TestGraphView(TestBase):
     def test_dt_nr_dr_form_with_execution_date_parameter_only(self):
         self.tester.test_with_execution_date_parameter_only()
 
-    def test_dt_nr_dr_form_with_base_date_and_num_runs_parmeters_only(self):
+    def test_dt_nr_dr_form_with_base_date_and_num_runs_parameters_only(self):
         self.tester.test_with_base_date_and_num_runs_parameters_only()
 
     def test_dt_nr_dr_form_with_base_date_and_num_runs_and_execution_date_outside(self):
@@ -1544,7 +1544,7 @@ class TestGanttView(TestBase):
     def test_dt_nr_dr_form_with_execution_date_parameter_only(self):
         self.tester.test_with_execution_date_parameter_only()
 
-    def test_dt_nr_dr_form_with_base_date_and_num_runs_parmeters_only(self):
+    def test_dt_nr_dr_form_with_base_date_and_num_runs_parameters_only(self):
         self.tester.test_with_base_date_and_num_runs_parameters_only()
 
     def test_dt_nr_dr_form_with_base_date_and_num_runs_and_execution_date_outside(self):