[BASOP CI] Fix in tests/cmp_pcm.py for custom LS configuration
Related to sa4/audio/ivas-basop#773 (closed)
In case of MLD comparison with custom LS, the out_config
in cmp_pcm.py
is a Path object and not a string. The check for existence in the list of output configurations will throw an error since the function .upper()
is not defined for Path. This adds a conversion using str()
before the .upper()
which prevents this error.