diff options
author | pooryorick <com.digitalsmarties@pooryorick.com> | 2017-11-19 00:06:51 (GMT) |
---|---|---|
committer | pooryorick <com.digitalsmarties@pooryorick.com> | 2017-11-19 00:06:51 (GMT) |
commit | 75924256c128fb94dc0cfbddf6d56fc89aeb10e7 (patch) | |
tree | 5bdacef0009d730244d257cadfe654aac31c6b40 /tests | |
parent | 42c80667fd7da57b65d92fee77d2b954fba95970 (diff) | |
download | tcl-75924256c128fb94dc0cfbddf6d56fc89aeb10e7.zip tcl-75924256c128fb94dc0cfbddf6d56fc89aeb10e7.tar.gz tcl-75924256c128fb94dc0cfbddf6d56fc89aeb10e7.tar.bz2 |
Fix segmentation fault in TclOO that was noted in [16fe1b5807]. Update
coroutine and TclOO object creation routines to use TclCreateObjCommandInNs.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/namespace.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/namespace.test b/tests/namespace.test index 220fa53..de96682 100644 --- a/tests/namespace.test +++ b/tests/namespace.test @@ -1920,7 +1920,7 @@ test namespace-44.5 {ensemble: errors} -setup { foobar foobarcon } -cleanup { rename foobar {} -} -returnCodes error -result {invalid command name "::foobarconfigure"} +} -returnCodes error -result {invalid command name "foobarconfigure"} test namespace-44.6 {ensemble: errors} -returnCodes error -body { namespace ensemble create gorp } -result {wrong # args: should be "namespace ensemble create ?option value ...?"} |