Skip to content

Commit 0f19009

Browse files
committed
fix dumb ruby 2.x bug
1 parent 1dbdb94 commit 0f19009

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/fabric/client_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
context 'when grpc_client host and creds are passed' do
5959
let(:expected_args) do
60-
if RUBY_VERSION.start_with?('2.6')
60+
if RUBY_VERSION.start_with?('2')
6161
['localhost:1234', :this_channel_is_insecure, {}]
6262
else
6363
['localhost:1234', :this_channel_is_insecure]

0 commit comments

Comments
 (0)