Skip to content

Commit

Permalink
test(fixtures): adjust scipy changelog expectations related to parse …
Browse files Browse the repository at this point in the history
…errors
  • Loading branch information
codejedi365 authored and relekang committed Mar 18, 2024
1 parent b226906 commit 6242b61
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/fixtures/repos/git_flow/repo_w_3_release_channels.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_commits_for_git_flow_repo_w_3_release_channels() -> GetRepoDefinitionFn:
"changelog_sections": {
"angular": [{"section": "Unknown", "i_commits": [0]}],
"emoji": [{"section": "Other", "i_commits": [0]}],
"scipy": [{"section": "None", "i_commits": [0]}],
"scipy": [{"section": "Unknown", "i_commits": [0]}],
"tag": [{"section": "Unknown", "i_commits": [0]}],
},
"commits": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_commits_for_github_flow_repo_w_feature_release_channel() -> GetRepoDefin
"changelog_sections": {
"angular": [{"section": "Unknown", "i_commits": [0]}],
"emoji": [{"section": "Other", "i_commits": [0]}],
"scipy": [{"section": "None", "i_commits": [0]}],
"scipy": [{"section": "Unknown", "i_commits": [0]}],
"tag": [{"section": "Unknown", "i_commits": [0]}],
},
"commits": [
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/repos/trunk_based_dev/repo_w_no_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_commits_for_trunk_only_repo_w_no_tags() -> GetRepoDefinitionFn:
"scipy": [
{"section": "Feature", "i_commits": [2]},
{"section": "Fix", "i_commits": [1, 3]},
{"section": "None", "i_commits": [0]},
{"section": "Unknown", "i_commits": [0]},
],
"tag": [
{"section": "Feature", "i_commits": [2]},
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/repos/trunk_based_dev/repo_w_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def get_commits_for_trunk_only_repo_w_tags() -> GetRepoDefinitionFn:
"changelog_sections": {
"angular": [{"section": "Unknown", "i_commits": [0]}],
"emoji": [{"section": "Other", "i_commits": [0]}],
"scipy": [{"section": "None", "i_commits": [0]}],
"scipy": [{"section": "Unknown", "i_commits": [0]}],
"tag": [{"section": "Unknown", "i_commits": [0]}],
},
"commits": [
Expand Down

0 comments on commit 6242b61

Please sign in to comment.