From 3d34be7cdcce2607491f3366754802c1be78ea6a Mon Sep 17 00:00:00 2001 From: Francois Chagnon Date: Thu, 5 Apr 2018 14:18:53 -0400 Subject: [PATCH] Fix redundant `Util::` namespacing On line 5 the reference to `Util` resolves to the class that was just opened on line 4, so `Util::` is redundant. --- lib/webmock/util/hash_counter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/webmock/util/hash_counter.rb b/lib/webmock/util/hash_counter.rb index db987ba03..1c9f2032f 100644 --- a/lib/webmock/util/hash_counter.rb +++ b/lib/webmock/util/hash_counter.rb @@ -2,7 +2,7 @@ module WebMock module Util - class Util::HashCounter + class HashCounter attr_accessor :hash def initialize self.hash = {}