diff --git a/tests/test_settings.py b/tests/test_settings.py index 3d3a0d9c..b2edbccc 100644 --- a/tests/test_settings.py +++ b/tests/test_settings.py @@ -3,12 +3,8 @@ def test_settings_group(plex): def test_settings_get(plex): - # This is the value since it we havnt set any friendlyname - # plex just default to computer name but it NOT in the settings. - # check this one. why is this bytes instead of string. value = plex.settings.get("FriendlyName").value - # Should not be bytes, fix this when py2 is dropped - assert isinstance(value, bytes) + assert isinstance(value, str) def test_settings_set(plex):