diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-03-22 11:44:36 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-03-22 11:44:36 (GMT) |
commit | 89c51acb17beb4fd6617969465a2c3bd8df1330a (patch) | |
tree | 631aa047f593787a41cd55d8be0fdcec04984c76 /tests/bind.test | |
parent | cd5c0e97ef3a34f935e8087492a3fccdd6848dde (diff) | |
parent | 9e48292ef242eaa56af7d2ee6923c95f99506a79 (diff) | |
download | tk-89c51acb17beb4fd6617969465a2c3bd8df1330a.zip tk-89c51acb17beb4fd6617969465a2c3bd8df1330a.tar.gz tk-89c51acb17beb4fd6617969465a2c3bd8df1330a.tar.bz2 |
Fix test-case bind-27.2 on X11 (it worked on win32)
Merge trunk.
Diffstat (limited to 'tests/bind.test')
-rw-r--r-- | tests/bind.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bind.test b/tests/bind.test index 1b1107a..0514499 100644 --- a/tests/bind.test +++ b/tests/bind.test @@ -5757,8 +5757,8 @@ test bind-27.1 {button names} -body { bind .t <Expose-1> foo } -returnCodes error -result {specified button "1" for non-button event} test bind-27.2 {button names} -body { - bind .t <Button-@> foo -} -returnCodes error -result {specified keysym "@" for non-key event} + bind .t <Button-10> foo +} -returnCodes error -result {bad event type or keysym "10"} test bind-27.3 {button names} -setup { frame .t.f -class Test -width 150 -height 100 pack .t.f |