Skip to content

Commit

Permalink
Fix tests and schema
Browse files Browse the repository at this point in the history
  • Loading branch information
sunank200 committed Nov 19, 2024
1 parent 24e504d commit 24a1673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/api_connexion/endpoints/test_task_instance_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -1819,7 +1819,7 @@ def test_should_assert_call_mocked_api_when_run_id(self, mock_set_task_instance_
"error, code, payload",
[
[
"{'_schema': ['dag_run_id must be provided']}",
"{'dag_run_id': ['Missing data for required field.']}",
400,
{
"dry_run": True,
Expand All @@ -1832,7 +1832,7 @@ def test_should_assert_call_mocked_api_when_run_id(self, mock_set_task_instance_
},
],
[
"{'logical_date': ['Unknown field.']}",
"{'dag_run_id': ['Missing data for required field.'], 'logical_date': ['Unknown field.']}",
400,
{
"dry_run": True,
Expand Down

0 comments on commit 24a1673

Please sign in to comment.