This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-2-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit d5570bc9e432f9dc7dd4a818f385a38d3d5e2453 Author: Mark Norman Francis <n...@201created.com> AuthorDate: Wed Feb 23 12:38:27 2022 +0000 Fix the triggerer capacity test (#21760) Commit 9076b67 changed the triggerer logic to use int not string. (cherry picked from commit e1fe30c70d0fe9c033db9daf9d4420f7fa815b2d) --- tests/cli/commands/test_triggerer_command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cli/commands/test_triggerer_command.py b/tests/cli/commands/test_triggerer_command.py index 6b20e6f..26a46bd 100644 --- a/tests/cli/commands/test_triggerer_command.py +++ b/tests/cli/commands/test_triggerer_command.py @@ -43,4 +43,4 @@ class TestTriggererCommand(unittest.TestCase): """Ensure that the capacity argument is passed correctly""" args = self.parser.parse_args(['triggerer', '--capacity=42']) triggerer_command.triggerer(args) - mock_scheduler_job.assert_called_once_with(capacity="42") + mock_scheduler_job.assert_called_once_with(capacity=42)