From 9366c1eda2967d6931efd6e73134dc79fb8a5cd2 Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Fri, 22 Apr 2016 22:05:25 +0300 Subject: Updated to fix the last remaining rubocop warnings. This involved silencing a few issues that were judged to be minor, and changing various whitespaces and function-calls. The most obvious example was changing this: assert(ret.kind_of? Array) To this: assert(ret.kind_of?(Array)) --- t/test-custodian-util-tftp.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/test-custodian-util-tftp.rb') diff --git a/t/test-custodian-util-tftp.rb b/t/test-custodian-util-tftp.rb index 0774124..a471226 100755 --- a/t/test-custodian-util-tftp.rb +++ b/t/test-custodian-util-tftp.rb @@ -92,7 +92,7 @@ class TestTftpUtil < Test::Unit::TestCase # def test_tftp_failed_fetch helper = Custodian::Util::Tftp.new('foo') - def helper.tftp(args) + def helper.tftp(_args) return false end -- cgit v1.2.1