Commit 886436ac authored by Thong Kuah's avatar Thong Kuah

Fix const_get in qa/ code

QA.const_get("QA::#{version}::Strategy") was really (accidentally?)
relying on the QA::EE::Strategy being inherited. So might as well switch
it to Object.const_get.
parent e9a4c70d
......@@ -19,7 +19,7 @@ module QA
end
def strategy
QA.const_get("QA::#{version}::Strategy", false)
Object.const_get("QA::#{version}::Strategy", false)
end
def self.method_missing(name, *args)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment