From 83de392b39ec37628928a2871a414b8accc33d95 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 25 Sep 2017 21:38:28 +0530 Subject: [PATCH] ... --- kitty_tests/parser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kitty_tests/parser.py b/kitty_tests/parser.py index 67d5de8a4..96b16ff39 100644 --- a/kitty_tests/parser.py +++ b/kitty_tests/parser.py @@ -219,6 +219,8 @@ class TestParser(BaseTest): t('a=t,t=f,s=100,z=9', '', c(action='t', transmission_type='f', data_width=100, z_index=9, payload_sz=0)) t(',s=1', '', ('Malformed graphics control block, invalid key character: 0x2c',)) t('W=1', '', ('Malformed graphics control block, invalid key character: 0x57',)) + t('1=1', '', ('Malformed graphics control block, invalid key character: 0x31',)) + t('a=1,,w=2', '', ('Malformed graphics control block, invalid key character: 0x2c',)) t('s', '', ('Malformed graphics control block, no = after key',)) t('s=', '', ('Malformed graphics control block, expecting an integer value',)) t('s==', '', ('Malformed graphics control block, expecting an integer value',))