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

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


The following commit(s) were added to refs/heads/main by this push:
     new 2f39cdec3c Fix wrong path in `providers/aws/utils/__init__.py` (#38987)
2f39cdec3c is described below

commit 2f39cdec3c6fc78283392b3d1c300117b245e3de
Author: Shahar Epstein <[email protected]>
AuthorDate: Sun Apr 14 13:03:34 2024 +0300

    Fix wrong path in `providers/aws/utils/__init__.py` (#38987)
---
 tests/system/providers/amazon/aws/utils/__init__.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/system/providers/amazon/aws/utils/__init__.py 
b/tests/system/providers/amazon/aws/utils/__init__.py
index 8c91996ccd..8b4114fc90 100644
--- a/tests/system/providers/amazon/aws/utils/__init__.py
+++ b/tests/system/providers/amazon/aws/utils/__init__.py
@@ -47,14 +47,14 @@ PURGE_LOGS_INTERVAL_PERIOD = 5
 TEST_FILE_IDENTIFIERS: list[str] = ["example_", "test_"]
 
 INVALID_ENV_ID_MSG: str = (
-    "In order to maximize compatibility, the SYSTEM_TESTS_ENV_ID must be an 
alphanumeric string "
-    "which starts with a letter. Please see 
`tests/system/providers/amazon/aws/README.md`."
+    "To maximize compatibility, the SYSTEM_TESTS_ENV_ID must be an 
alphanumeric string "
+    "which starts with a letter. Please see 
`tests/system/providers/amazon/README.md`."
 )
 LOWERCASE_ENV_ID_MSG: str = (
     "The provided Environment ID contains uppercase letters and "
     "will be converted to lowercase for the AWS System Tests."
 )
-NO_VALUE_MSG: str = "No Value Found: Variable {key} could not be found and no 
default value was provided."
+NO_VALUE_MSG: str = "No Value Found: Variable {key} could not be found, and no 
default value was provided."
 
 log = logging.getLogger(__name__)
 

Reply via email to