From 782a938bc604ac5173729fc731639452cc8614ba Mon Sep 17 00:00:00 2001 From: Justin Bandoro Date: Thu, 15 Feb 2024 17:30:50 -0800 Subject: [PATCH] comment typo --- tests/operators/test_kubernetes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/operators/test_kubernetes.py b/tests/operators/test_kubernetes.py index eb15b109b..e267b9b05 100644 --- a/tests/operators/test_kubernetes.py +++ b/tests/operators/test_kubernetes.py @@ -69,9 +69,9 @@ def test_dbt_kubernetes_operator_execute(mock_build_kube_args, base_operator, mo project_dir="my/dir", ) operator.execute(context={}) - # Assert that the build_command method was called in the execution + # Assert that the build_kube_args method was called in the execution mock_build_kube_args.assert_called_once() - # Assert that the docker execute method was called in the execution + # Assert that the kubernetes execute method was called in the execution mock_kubernetes_execute.assert_called_once() assert mock_kubernetes_execute.call_args.args[-1] == {}