lib/cucumber/pickles/steps/fill_in/factory.rb in pickles-0.1.10 vs lib/cucumber/pickles/steps/fill_in/factory.rb in pickles-0.1.12
- old
+ new
@@ -15,11 +15,11 @@
if !@value.nil? && @value[':'] && !in_quotes?
step = FillIN::ComplexInput
elsif @label =~ TAG
@label = $1
- tag = $2
- step = Pickles.config.step_by_tag(tag) || FillIN::Input
+ tag = $2
+ step = Pickles.config.step_by_tag(tag) || FillIN::Input
else
step = FillIN::Input
end
step.new(@label, @value, @within)