diff --git a/test/support/filesystem_dynamic_test_helper.py b/test/support/filesystem_dynamic_test_helper.py index 1f48c9527..d2b2810d0 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)