Remove realpath call from expected user_configurations_pathname
MSP-11153 realpath is not used in the actual code anymore because it doesn't work for non-existent paths.bug/bundler_fix
parent
188f5d012a
commit
5ab8fcd026
|
@ -664,7 +664,7 @@ RSpec.describe Metasploit::Framework::Database do
|
|||
end
|
||||
|
||||
it 'is database.yml under the user config root' do
|
||||
expect(user_configurations_pathname).to eq(Pathname.new(config_root).realpath.join('database.yml'))
|
||||
expect(user_configurations_pathname).to eq(Pathname.new(config_root).join('database.yml'))
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue