Fix Travis CI build

This commit is contained in:
Junegunn Choi 2020-10-23 20:44:04 +09:00
parent 2166b4ca17
commit e2b87e0d74
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627
3 changed files with 7 additions and 3 deletions

View File

@ -20,5 +20,9 @@ Style/MethodCallWithArgsParentheses:
- ^refute_
Style/NumericPredicate:
Enabled: false
Style/StringConcatenation:
Enabled: false
Style/OptionalBooleanParameter:
Enabled: false
Style/WordArray:
MinSize: 1

View File

@ -18,7 +18,7 @@ addons:
- fish
- tmux
update: true
install: gem install minitest rubocop rubocop-minitest rubocop-performance
install: gem install --no-document minitest:5.14.2 rubocop:1.0.0 rubocop-minitest:0.10.1 rubocop-performance:1.8.1
script:
- make test
# LC_ALL=C to avoid escape codes in

View File

@ -109,7 +109,7 @@ class Tmux
class << lines
def counts
lazy
.map { |l| l.scan(%r{^. ([0-9]+)\/([0-9]+)( \(([0-9]+)\))?}) }
.map { |l| l.scan(%r{^. ([0-9]+)/([0-9]+)( \(([0-9]+)\))?}) }
.reject(&:empty?)
.first&.first&.map(&:to_i)&.values_at(0, 1, 3) || [0, 0, 0]
end
@ -2052,7 +2052,7 @@ module CompletionTest
tmux.until { |lines| assert_equal 'cd /tmp/fzf-test/d55/xx', lines[-1] }
# Should not match regular files (bash-only)
if self.class == TestBash
if instance_of?(TestBash)
tmux.send_keys :Tab
tmux.until { |lines| assert_equal 'cd /tmp/fzf-test/d55/xx', lines[-1] }
end