aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/spec/alloc_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'src/ruby/spec/alloc_spec.rb')
-rw-r--r--src/ruby/spec/alloc_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ruby/spec/alloc_spec.rb b/src/ruby/spec/alloc_spec.rb
index 99cc39d0ba..305405e9bd 100644
--- a/src/ruby/spec/alloc_spec.rb
+++ b/src/ruby/spec/alloc_spec.rb
@@ -31,15 +31,15 @@ require 'grpc'
describe 'Wrapped classes where .new cannot create an instance' do
- describe GRPC::Event do
+ describe GRPC::Core::Event do
it 'should fail .new fail with a runtime error' do
- expect { GRPC::Event.new }.to raise_error(TypeError)
+ expect { GRPC::Core::Event.new }.to raise_error(TypeError)
end
end
- describe GRPC::Call do
+ describe GRPC::Core::Call do
it 'should fail .new fail with a runtime error' do
- expect { GRPC::Event.new }.to raise_error(TypeError)
+ expect { GRPC::Core::Event.new }.to raise_error(TypeError)
end
end