diff options
Diffstat (limited to 'test/support/filesystem_dynamic_test_helper.py')
-rw-r--r-- | test/support/filesystem_dynamic_test_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/support/filesystem_dynamic_test_helper.py b/test/support/filesystem_dynamic_test_helper.py index 1f48c9527982..d2b2810d0992 100644 --- a/test/support/filesystem_dynamic_test_helper.py +++ b/test/support/filesystem_dynamic_test_helper.py @@ -75,7 +75,7 @@ def create_fifo(source): def create_socket(source): - mode = 0600|stat.S_IFSOCK + mode = 0o600 | stat.S_IFSOCK os.mknod(sanitize(source), mode) |