We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
count
_count_child_pids
1 parent 05d38eb commit 8a76223Copy full SHA for 8a76223
1 file changed
test/utils.jl
@@ -14,7 +14,7 @@ function _count_child_pids(pid = getpid())
14
# because it's spawned by the current process, in that case we subtract
15
# one to always exclude it, otherwise if we're getting the number of
16
# children of another process we start from 0.
17
- count = pid == getpid() : -1 : 0
+ count = pid == getpid() ? -1 : 0
18
for line in lines
19
m = match(r" *(\d+) +(\d+)", line)
20
if !isnothing(m)
0 commit comments