lib/facts/solaris/path.rb in facter-4.0.8.pre vs lib/facts/solaris/path.rb in facter-4.0.9.pre

- old
+ new

@@ -1,14 +1,14 @@ # frozen_string_literal: true -module Facter +module Facts module Solaris class Path FACT_NAME = 'path' def call_the_resolver - fact_value = Resolvers::Path.resolve(:path) - ResolvedFact.new(FACT_NAME, fact_value) + fact_value = Facter::Resolvers::Path.resolve(:path) + Facter::ResolvedFact.new(FACT_NAME, fact_value) end end end end