From cfedd1f307d77c2243be3500e22fa33c251ab697 Mon Sep 17 00:00:00 2001 From: Dan Kubb Date: Sun, 28 Jul 2013 15:13:44 -0700 Subject: [PATCH] Fix spec to use proper constant --- spec/integration/mutant/test_mutator_handles_types_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/integration/mutant/test_mutator_handles_types_spec.rb b/spec/integration/mutant/test_mutator_handles_types_spec.rb index e04c7958..c82a0815 100644 --- a/spec/integration/mutant/test_mutator_handles_types_spec.rb +++ b/spec/integration/mutant/test_mutator_handles_types_spec.rb @@ -3,7 +3,7 @@ require 'spec_helper' describe Mutant do specify 'mutant should not crash for any node parser can generate' do Mutant::NODE_TYPES.each do |type| - Mutant::Mutator::Node::Registry.lookup(Mutant::NodeHelpers.s(type)) + Mutant::Mutator::Registry.lookup(Mutant::NodeHelpers.s(type)) end end end