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 e0b7cae  Fix spelling (#12266)
e0b7cae is described below

commit e0b7cae51e2fa6ae2083204e11480da72547268c
Author: John Bampton <[email protected]>
AuthorDate: Wed Nov 11 08:19:43 2020 +1000

    Fix spelling (#12266)
---
 scripts/ci/dockerfiles/krb5-kdc-server/utils/create_admin.sh | 2 +-
 tests/dags_corrupted/README.md                               | 2 +-
 tests/providers/google/cloud/hooks/test_dataflow.py          | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/ci/dockerfiles/krb5-kdc-server/utils/create_admin.sh 
b/scripts/ci/dockerfiles/krb5-kdc-server/utils/create_admin.sh
index bf07570..3e22af2 100755
--- a/scripts/ci/dockerfiles/krb5-kdc-server/utils/create_admin.sh
+++ b/scripts/ci/dockerfiles/krb5-kdc-server/utils/create_admin.sh
@@ -41,7 +41,7 @@ PASSWORD=$2
 REALM_NAME=EXAMPLE.COM
 
 cat << EOF | kadmin.local &>/dev/null
-add_principal -pw $PASSWORD "${USERNAME}/admmin@${REALM_NAME}"
+add_principal -pw $PASSWORD "${USERNAME}/admin@${REALM_NAME}"
 listprincs
 quit
 EOF
diff --git a/tests/dags_corrupted/README.md b/tests/dags_corrupted/README.md
index adffb2a..2cf2aaa 100644
--- a/tests/dags_corrupted/README.md
+++ b/tests/dags_corrupted/README.md
@@ -20,7 +20,7 @@
 # Unit Tests DAGs Folder
 
 This folder contains DAGs for Airflow unit testing. These files contain 
defects that prevent the default
-Python interpreter from loading this file
+Python interpreter from loading this file.
 
 To access a DAG in this folder, use the following code inside a unit test.
 
diff --git a/tests/providers/google/cloud/hooks/test_dataflow.py 
b/tests/providers/google/cloud/hooks/test_dataflow.py
index 3a84cf3..93a5528 100644
--- a/tests/providers/google/cloud/hooks/test_dataflow.py
+++ b/tests/providers/google/cloud/hooks/test_dataflow.py
@@ -258,7 +258,7 @@ class TestDataflowHook(unittest.TestCase):
     @mock.patch(DATAFLOW_STRING.format('_DataflowJobsController'))
     @mock.patch(DATAFLOW_STRING.format('_DataflowRunner'))
     @mock.patch(DATAFLOW_STRING.format('DataflowHook.get_conn'))
-    def test_start_python_dataflow_with_custom_region_as_paramater(
+    def test_start_python_dataflow_with_custom_region_as_parameter(
         self, mock_conn, mock_dataflow, mock_dataflowjob, mock_uuid
     ):
         mock_uuid.return_value = MOCK_UUID

Reply via email to