summaryrefslogtreecommitdiffstats
path: root/tests/select.test
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2017-11-13 20:37:08 (GMT)
committerfvogel <fvogelnew1@free.fr>2017-11-13 20:37:08 (GMT)
commitaf619ddfd8061e08a042bd5886745731587ce373 (patch)
tree3e2885b1f90f0781f0e3b160617d6f7ea33e376e /tests/select.test
parentd18941e06274b0a1a334ca61a1e0b202b2c277f7 (diff)
downloadtk-af619ddfd8061e08a042bd5886745731587ce373.zip
tk-af619ddfd8061e08a042bd5886745731587ce373.tar.gz
tk-af619ddfd8061e08a042bd5886745731587ce373.tar.bz2
Fix test select-14.1. It now passes on Linux with Gnome.
Diffstat (limited to 'tests/select.test')
-rw-r--r--tests/select.test5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/select.test b/tests/select.test
index e3fdeea..093c4c0 100644
--- a/tests/select.test
+++ b/tests/select.test
@@ -1163,10 +1163,11 @@ test select-14.1 {Bug [73ba07efcd]: Use correct property type when handling MULT
} -body {
selection handle -selection CLIPBOARD . get_clip
selection own -selection CLIPBOARD .
- selection get -selection CLIPBOARD_MANAGER -type SAVE_TARGETS
+ set res [selection get -selection CLIPBOARD_MANAGER -type SAVE_TARGETS]
+ lappend res [clipboard get]
} -cleanup {
rename get_clip {}
-} -result {}
+} -result {NULL abcd}
catch {rename weirdHandler {}}