From 6c855cc168501a0516caa00d8967f77919fd0124 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Sat, 21 Jun 2025 23:55:24 +0900 Subject: [PATCH] Fix "No such file or directory @ rb_io_reopen" error from test. --- spec/daemonizing_spec.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/spec/daemonizing_spec.rb b/spec/daemonizing_spec.rb index fc801ff9..1f933bef 100644 --- a/spec/daemonizing_spec.rb +++ b/spec/daemonizing_spec.rb @@ -77,12 +77,10 @@ def name it 'should change privilege' do pid = fork do - subject.daemonize subject.change_privilege('root', 'admin') end _, status = Process.wait2(pid) - expect(status).to be_a_success end