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
Luke Imhoff 2014-08-28 11:51:25 -05:00
parent 188f5d012a
commit 5ab8fcd026
No known key found for this signature in database
GPG Key ID: 5B1FB01FB33356F8
1 changed files with 1 additions and 1 deletions

View File

@ -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