We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b01d808 commit 350f437Copy full SHA for 350f437
tests/test_settings.py
@@ -8,7 +8,8 @@ def test_settings_get(plex):
8
# plex just default to computer name but it NOT in the settings.
9
# check this one. why is this bytes instead of string.
10
value = plex.settings.get('FriendlyName').value
11
- assert value or len(value)
+ # Should not be bytes, fix this when py2 is dropped
12
+ assert isinstance(value, bytes)
13
14
15
def test_settings_set(plex):
0 commit comments