Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid calling decode on str (#16214)
* Avoid calling decode on str In tests we see this failure: AttributeError: 'str' object has no attribute 'decode'. Did you mean: 'encode'? This implies that the strerr value is a str, which you can't decode. I can't find the specific change, but this implies the result used to be a byte string and is now decoded elsewhere. * Update tests/foreman/destructive/test_rename.py Co-authored-by: Peter Ondrejka <[email protected]> * Update tests/foreman/destructive/test_rename.py Co-authored-by: Evgeni Golov <[email protected]> --------- Co-authored-by: Peter Ondrejka <[email protected]> Co-authored-by: Jameer Pathan <[email protected]> Co-authored-by: Evgeni Golov <[email protected]>
- Loading branch information