aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/spec/channel_spec.rb
diff options
context:
space:
mode:
authorGravatar Tim Emiola <temiola@google.com>2015-08-11 16:35:41 -0700
committerGravatar Tim Emiola <temiola@google.com>2015-08-11 17:22:58 -0700
commitfde3dbfb87853299b3e8b459180b935a013e3388 (patch)
treecb13da81bc6700ae091a6c98431397b575af64e9 /src/ruby/spec/channel_spec.rb
parentbc447deaad50756c2e8253bc3347e1731321ddf1 (diff)
Allow reserved metadata to be propagated between calls
Diffstat (limited to 'src/ruby/spec/channel_spec.rb')
-rw-r--r--src/ruby/spec/channel_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ruby/spec/channel_spec.rb b/src/ruby/spec/channel_spec.rb
index 9081f0e20c..25cefcdfb7 100644
--- a/src/ruby/spec/channel_spec.rb
+++ b/src/ruby/spec/channel_spec.rb
@@ -117,7 +117,7 @@ describe GRPC::Core::Channel do
deadline = Time.now + 5
blk = proc do
- ch.create_call(cq, 'dummy_method', nil, deadline)
+ ch.create_call(cq, nil, nil, 'dummy_method', nil, deadline)
end
expect(&blk).to_not raise_error
end
@@ -128,7 +128,7 @@ describe GRPC::Core::Channel do
deadline = Time.now + 5
blk = proc do
- ch.create_call(cq, 'dummy_method', nil, deadline)
+ ch.create_call(cq, nil, nil, 'dummy_method', nil, deadline)
end
expect(&blk).to raise_error(RuntimeError)
end