summaryrefslogtreecommitdiffstats
path: root/tests/fileSystem.test
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-03 13:51:18 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-03 13:51:18 (GMT)
commitdefc33228dae46280943ff6cc62d3a4a3284e056 (patch)
tree5b46d34089b0516431704c23338686ba913e602f /tests/fileSystem.test
parent910d0222de6f3bd8fdf3b7c061cdb89581b2f2df (diff)
downloadtcl-defc33228dae46280943ff6cc62d3a4a3284e056.zip
tcl-defc33228dae46280943ff6cc62d3a4a3284e056.tar.gz
tcl-defc33228dae46280943ff6cc62d3a4a3284e056.tar.bz2
Use 0o??? notation for octal numbers in tools and testcases in stead of 0???. Although it still works in 8.6, it is deprecated an will be removed in 9.0.
Diffstat (limited to 'tests/fileSystem.test')
-rw-r--r--tests/fileSystem.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fileSystem.test b/tests/fileSystem.test
index 7e06a23..8af4f53 100644
--- a/tests/fileSystem.test
+++ b/tests/fileSystem.test
@@ -695,7 +695,7 @@ test filesystem-7.5 {cross-filesystem file copy with -force} -setup {
# First copy should succeed
set res [catch {file copy simplefs:/simplefile file2} err]
lappend res $err
- file attributes file2 -permissions 0000
+ file attributes file2 -permissions 0o000
# Second copy should fail (no -force)
lappend res [catch {file copy simplefs:/simplefile file2} err]
lappend res $err