diff options
| author | Yusuke Endoh <mame@ruby-lang.org> | 2023-05-10 23:49:44 +0900 |
|---|---|---|
| committer | Yusuke Endoh <mame@ruby-lang.org> | 2023-05-10 23:49:44 +0900 |
| commit | a19fa9b2bd94097e973fbdca48722c80b4d9b19f (patch) | |
| tree | edd9d948de76cdf19eec4c88dd3bd259c0702c92 /test/ruby/test_process.rb | |
| parent | 2d9bc3efe57fe0ec1a8171340c950fb98ca8c8f2 (diff) | |
Prevent warning: assigned but unused variable
http://rubyci.s3.amazonaws.com/debian10/ruby-master/log/20230510T123003Z.log.html.gz
```
/home/chkbuild/chkbuild/tmp/build/20230510T123003Z/ruby/test/objspace/test_objspace.rb:224: warning: assigned but unused variable - c4
/home/chkbuild/chkbuild/tmp/build/20230510T123003Z/ruby/test/ruby/test_class.rb:362: warning: assigned but unused variable - e
/home/chkbuild/chkbuild/tmp/build/20230510T123003Z/ruby/test/ruby/test_process.rb:2602: warning: assigned but unused variable - parent_pid
```
Diffstat (limited to 'test/ruby/test_process.rb')
| -rw-r--r-- | test/ruby/test_process.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb index 66624644e9..8d42c588fe 100644 --- a/test/ruby/test_process.rb +++ b/test/ruby/test_process.rb @@ -2599,7 +2599,7 @@ EOS end if Process.respond_to?(:_fork) def test__fork_pid_cache - parent_pid = Process.pid + _parent_pid = Process.pid r, w = IO.pipe pid = Process._fork if pid == 0 |
