summaryrefslogtreecommitdiff
path: root/test/test_theming.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-06-12 16:56:18 +0200
committermathieui <mathieui@mathieui.net>2016-06-12 16:56:18 +0200
commit2994a8e1e93ea789426ccf2b8c1d912855a78daa (patch)
treec097f961a06ab7aa82aea01610ccbee713aabaf5 /test/test_theming.py
parented5f7b18bd5c92269300e63706adae77a3bbe966 (diff)
downloadpoezio-2994a8e1e93ea789426ccf2b8c1d912855a78daa.tar.gz
poezio-2994a8e1e93ea789426ccf2b8c1d912855a78daa.tar.bz2
poezio-2994a8e1e93ea789426ccf2b8c1d912855a78daa.tar.xz
poezio-2994a8e1e93ea789426ccf2b8c1d912855a78daa.zip
Update tests
Diffstat (limited to 'test/test_theming.py')
-rw-r--r--test/test_theming.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_theming.py b/test/test_theming.py
index b59560b7..40d1ab42 100644
--- a/test/test_theming.py
+++ b/test/test_theming.py
@@ -10,7 +10,7 @@ from theming import dump_tuple, read_tuple
def test_read_tuple():
assert read_tuple('1,-1,u') == ((1, -1), 'u')
- assert read_tuple('1,2') == ((1, 2), None)
+ assert read_tuple('1,2') == ((1, 2), '\0')
with pytest.raises(IndexError):
read_tuple('1')