diff options
| author | Azul <azul@riseup.net> | 2017-09-23 11:07:32 +0200 | 
|---|---|---|
| committer | Azul <azul@riseup.net> | 2017-09-23 16:53:27 +0200 | 
| commit | 40916407517f4bdb75a295caf29e02d4f403349b (patch) | |
| tree | 8219567c0ecdf583fdd916594ec7915ab9eb2f19 /test/functional/sample_test.rb | |
| parent | 22c6c80310a8d3d3abbd1006598b4fbaec98ffd0 (diff) | |
style: rubocop mostly auto-correct
Diffstat (limited to 'test/functional/sample_test.rb')
| -rw-r--r-- | test/functional/sample_test.rb | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/test/functional/sample_test.rb b/test/functional/sample_test.rb index 2b49527..dbd8796 100644 --- a/test/functional/sample_test.rb +++ b/test/functional/sample_test.rb @@ -49,7 +49,7 @@ class SampleTest < FunctionalTest    end    def lookup(address) -    run_command %Q(curl localhost:6425 #{curl_opts} -d "address=#{address}") +    run_command %(curl localhost:6425 #{curl_opts} -d "address=#{address}")    end    def curl_opts @@ -57,13 +57,13 @@ class SampleTest < FunctionalTest    end    def open_files_count -    run_command(%Q(lsof | grep " #{nickserver_pid} " | wc -l)).to_i +    run_command(%(lsof | grep " #{nickserver_pid} " | wc -l)).to_i    end    def run_command(command)      `#{command} 2>&1`.tap do |out| -      assert ($?.exitstatus == 0), -        "failed to run '#{command}':\n #{out}" +      assert ($CHILD_STATUS.exitstatus == 0), +             "failed to run '#{command}':\n #{out}"      end    end  end | 
