aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/spec
diff options
context:
space:
mode:
authorGravatar Tim Emiola <temiola@google.com>2015-03-23 12:31:55 -0700
committerGravatar Tim Emiola <temiola@google.com>2015-03-23 12:37:28 -0700
commit601869bb1a86115b5042e33051adb15cea07e122 (patch)
tree798ffc57623404123f75eaed4c798755a6100936 /src/ruby/spec
parent77e2fb0f9521fd41f4e0ed3fc0d7dc5e9e4208ba (diff)
Enables some incorrectly disabled tests
Diffstat (limited to 'src/ruby/spec')
-rw-r--r--src/ruby/spec/generic/active_call_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ruby/spec/generic/active_call_spec.rb b/src/ruby/spec/generic/active_call_spec.rb
index 8914225b55..96e07cacb4 100644
--- a/src/ruby/spec/generic/active_call_spec.rb
+++ b/src/ruby/spec/generic/active_call_spec.rb
@@ -67,7 +67,7 @@ describe GRPC::ActiveCall do
end
describe '#multi_req_view' do
- xit 'exposes a fixed subset of the ActiveCall methods' do
+ it 'exposes a fixed subset of the ActiveCall methods' do
want = %w(cancelled, deadline, each_remote_read, metadata, shutdown)
v = @client_call.multi_req_view
want.each do |w|
@@ -77,7 +77,7 @@ describe GRPC::ActiveCall do
end
describe '#single_req_view' do
- xit 'exposes a fixed subset of the ActiveCall methods' do
+ it 'exposes a fixed subset of the ActiveCall methods' do
want = %w(cancelled, deadline, metadata, shutdown)
v = @client_call.single_req_view
want.each do |w|