Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #8168 from Yadnyawalkya/mac_fix
Browse files Browse the repository at this point in the history
[1LP][RFR] Fixes dual NICs MAC comparison failure - 1liner
  • Loading branch information
izapolsk committed Nov 20, 2018
2 parents cdba286 + c47b86c commit a6790db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfme/tests/v2v/test_v2v_migrations.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def _cleanup():
# validate MAC address matches between source and target VMs
src_vm = form_data_vm_obj_dual_nics.vm_list.pop()
migrated_vm = get_migrated_vm_obj(src_vm, v2v_providers.rhv_provider)
assert src_vm.mac_address == migrated_vm.mac_address
assert set(src_vm.mac_address.split(", ")) == set(migrated_vm.mac_address.split(", "))


@pytest.mark.parametrize('form_data_vm_obj_single_datastore', [['nfs', 'nfs', dual_disk_template]],
Expand Down

0 comments on commit a6790db

Please sign in to comment.