diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-03-19 09:20:26 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-03-19 09:20:26 (GMT) |
commit | fff5060d945d7ee8f74e84dea9b0f703e2bae424 (patch) | |
tree | 934d767914fbb69c3a2e69347ca4b4a20148bd30 /tests | |
parent | e6d6e2962de378b019acce96758ea25fb4566243 (diff) | |
download | tcl-fff5060d945d7ee8f74e84dea9b0f703e2bae424.zip tcl-fff5060d945d7ee8f74e84dea9b0f703e2bae424.tar.gz tcl-fff5060d945d7ee8f74e84dea9b0f703e2bae424.tar.bz2 |
Change Tcl_StaticPackage's "pkgName" argument to "prefix" and improve documentation, describing better what this argument does.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/load.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/load.test b/tests/load.test index c79ddf4..b13f1f4 100644 --- a/tests/load.test +++ b/tests/load.test @@ -234,7 +234,7 @@ test load-10.1 {load from vfs} -setup { cd $testDir testsimplefilesystem 1 } -constraints [list $dll $loaded testsimplefilesystem] -body { - list [catch {load simplefs:/pkgd$ext pkgd} msg] $msg + list [catch {load simplefs:/pkgd$ext Pkgd} msg] $msg } -result {0 {}} -cleanup { testsimplefilesystem 0 cd $dir |