From d3fffa8ed8e776be94a39b076a4b0870400233f2 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Thu, 13 Jul 2023 19:00:23 +0900 Subject: [PATCH] Removed redundant the --- core/module/const_get_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/module/const_get_spec.rb b/core/module/const_get_spec.rb index 69f181cf51..0233118f4b 100644 --- a/core/module/const_get_spec.rb +++ b/core/module/const_get_spec.rb @@ -105,7 +105,7 @@ -> { ConstantSpecs.const_get("CS_CONST1", false) }.should raise_error(NameError) end - it "returns a constant whose module is defined the the toplevel" do + it "returns a constant whose module is defined the toplevel" do ConstantSpecs.const_get("ConstantSpecsTwo::Foo").should == :cs_two_foo ConstantSpecsThree.const_get("ConstantSpecsTwo::Foo").should == :cs_three_foo end