spec/lib/appsignal/rack/rails_instrumentation_spec.rb in appsignal-1.3.1 vs spec/lib/appsignal/rack/rails_instrumentation_spec.rb in appsignal-1.3.2

- old
+ new

@@ -97,16 +97,16 @@ subject { middleware.request_id(env) } context "with request id set" do let(:env) { {'action_dispatch.request_id' => 'id'} } - it { should == 'id' } + it { should eq 'id' } end context "with request id not set" do let(:env) { {} } - its(:length) { should == 36 } + its(:length) { should eq 36 } end end end end