From 133713b4fd88f56aa6be18c044577717415ecaff Mon Sep 17 00:00:00 2001 From: Markus Schirp Date: Mon, 2 Sep 2013 20:38:54 +0200 Subject: [PATCH] Fix warnings in literal range mutator --- lib/mutant/mutator/node/literal/range.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/mutant/mutator/node/literal/range.rb b/lib/mutant/mutator/node/literal/range.rb index 9f3d8bad..59cebda2 100644 --- a/lib/mutant/mutator/node/literal/range.rb +++ b/lib/mutant/mutator/node/literal/range.rb @@ -29,8 +29,8 @@ module Mutant def dispatch emit_nil emit_inverse - emit_start_mutations - emit_end_mutations + emit_lower_bound_mutations + emit_upper_bound_mutations end # Return inverse node @@ -49,7 +49,7 @@ module Mutant # # @api private # - def emit_end_mutations + def emit_upper_bound_mutations emit_self(NAN, _end) end @@ -59,7 +59,7 @@ module Mutant # # @api private # - def emit_start_mutations + def emit_lower_bound_mutations emit_self(start, INFINITY) emit_self(start, NAN) end