Skip to content

Commit

Permalink
added some more fixes for the intergration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-ang9 committed Sep 24, 2024
1 parent bbd0b38 commit 9dc1aa6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
def test_pre_registered_system_conversion(convert2rhel, pre_registered):
with convert2rhel("-y --debug") as c2r:
c2r.expect("Conversion successful!")

c2r.expect("Continue with the system conversion?")
c2r.sendline("y")
assert c2r.exitstatus == 0
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ def test_pre_registered_re_register(shell, pre_registered, convert2rhel):
c2r.expect("Continue with the system conversion?")
c2r.sendline("y")

c2r.expect("Continue with the system conversion?")
c2r.sendline("y")

c2r.expect("Registering the system using subscription-manager")
c2r.expect("Continue with the system conversion?")
c2r.sendline("n")
Expand Down

0 comments on commit 9dc1aa6

Please sign in to comment.