Skip to content

Commit

Permalink
fix: Update phase from Final to Convert
Browse files Browse the repository at this point in the history
  • Loading branch information
Venefilyn committed Oct 22, 2024
1 parent 82edefa commit 943cec0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion convert2rhel/phase.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class ConversionPhases:
PRE_PONR_CHANGES = ConversionPhase(name="PRE_PONR_CHANGES", log_name="Prepare")
# Phase to exit the Analyze SubCommand early
ANALYZE_EXIT = ConversionPhase(name="ANALYZE_EXIT", log_name="Analyzing")
POST_PONR_CHANGES = ConversionPhase(name="POST_PONR_CHANGES", log_name="Final")
POST_PONR_CHANGES = ConversionPhase(name="POST_PONR_CHANGES", log_name="Convert")
ROLLBACK = ConversionPhase(name="ROLLBACK", log_name="Rollback")

current_phase = None # type: ConversionPhase|None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_handling_corrupted_initramfs_file(convert2rhel, shell):
TEST_VARS["RHSM_SCA_PASSWORD"],
)
) as c2r:
c2r.expect("Prepare: Final modifications to the system")
c2r.expect("Convert: Final modifications to the system")

kernel_version = get_latest_installed_kernel_version(kernel_name)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_handling_missing_kernel_boot_files(convert2rhel, shell):
TEST_VARS["RHSM_SCA_PASSWORD"],
)
) as c2r:
c2r.expect("Prepare: Final modifications to the system")
c2r.expect("Convert: Final modifications to the system")

kernel_version = get_latest_installed_kernel_version(kernel_name)

Expand Down

0 comments on commit 943cec0

Please sign in to comment.