diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-03-20 11:29:49 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-03-20 11:29:49 (GMT) |
commit | 5d63902332fb63571e32e9124190aa3f9c98526b (patch) | |
tree | a625d7daab79f2836863888c867636187da0ba3a /tests/chanio.test | |
parent | 75664c655d15e9308cf62fcdaee3bed1c4545c63 (diff) | |
parent | 2d9a47cff10b0ed3a76254dbeb03b5ec987170f4 (diff) | |
download | tcl-5d63902332fb63571e32e9124190aa3f9c98526b.zip tcl-5d63902332fb63571e32e9124190aa3f9c98526b.tar.gz tcl-5d63902332fb63571e32e9124190aa3f9c98526b.tar.bz2 |
Fix [d7fd37ebd9]: handling leftover prefix in table encoding
Diffstat (limited to 'tests/chanio.test')
-rw-r--r-- | tests/chanio.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/chanio.test b/tests/chanio.test index d2008e6..b73e681 100644 --- a/tests/chanio.test +++ b/tests/chanio.test @@ -1104,7 +1104,7 @@ test chan-io-7.3 {FilterInputBytes: split up character at EOF} -setup { lappend x [chan gets $f line] $line } -cleanup { chan close $f -} -result [list 15 "123456789012301" 18 0 1 -1 ""] +} -result [list 15 "123456789012301" 17 1 1 -1 ""] test chan-io-7.4 {FilterInputBytes: recover from split up character} -setup { variable x "" } -constraints {stdio fileevent} -body { |