Skip to content

Commit

Permalink
fix: two hotfixes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianKuesters committed Apr 19, 2024
1 parent a270486 commit ab08322
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/test_two_hotfixes.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ def test_feat_then_hotfixes(self) -> None:

# Act
# Feature
self.repo.commit(CommitMessages.FIX)
self.repo.commit(CommitMessages.FEATURE)

self.repo.merge('main', 'release')
actual_output_feat_release = run_action(args_feat_release)
Expand Down Expand Up @@ -645,7 +645,7 @@ def test_breaking_then_hotfixes(self) -> None:

# Act
# Breaking
self.repo.commit(CommitMessages.FIX)
self.repo.commit(CommitMessages.BREAKING_FIX)

self.repo.merge('main', 'release')
actual_output_breaking_release = run_action(args_breaking_release)
Expand Down

0 comments on commit ab08322

Please sign in to comment.