Actions
Bug #4562
closedThe relative_path of repositories fixtures is wrong. Has erroneous leading slash.
Description
For example, the relative_path for fedora_17_x86_64 is '/ACME_Corporation/library/fedora_17_label'. It should not have a leading slash. Here's some code from Repository.clone_repo_path:
org, _, content_path = repo_lib.relative_path.split("/", 3)
With this code, org becomes "" while _ becomes "ACME_Corporation" and content_path is "library/fedora_17_label". We need to fix the fixtures and any breaking tests.
Actions