Skip to content

Commit

Permalink
specs: fix ambiguous argument warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ktheory committed Jun 27, 2016
1 parent 63f5e9c commit 3a802bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/ipcat_iprange_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
it("should match first") { (range <=> range.first).must_equal 0 }
it("should match last") { (range <=> range.last).must_equal 0 }
it("should match first-1") { (range <=> range.first - 1).must_equal 1 }
it("should match last+1") { (range <=> range.last + 1).must_equal -1 }
it("should match last+1") { (range <=> range.last + 1).must_equal(-1) }
end
end

0 comments on commit 3a802bc

Please sign in to comment.