We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83643e5 commit fde5463Copy full SHA for fde5463
tests/core/test_configuration.py
@@ -640,10 +640,11 @@ def test_auth_backends_adds_session(self):
640
)
641
642
def test_command_from_env(self):
643
- test_cmdenv_config = """[testcmdenv]
644
-itsacommand = NOT OK
645
-notacommand = OK
646
-"""
+ test_cmdenv_config = textwrap.dedent("""\
+ [testcmdenv]
+ itsacommand=NOT OK
+ notacommand=OK
647
+ """)
648
test_cmdenv_conf = AirflowConfigParser()
649
test_cmdenv_conf.read_string(test_cmdenv_config)
650
test_cmdenv_conf.sensitive_config_values.add(("testcmdenv", "itsacommand"))
0 commit comments