Consistent commas

bug/bundler_fix
James Lee 2015-01-27 08:41:24 -06:00
parent eac7b11a87
commit ca44ae2109
No known key found for this signature in database
GPG Key ID: 2D6094C7CEA0A321
1 changed files with 6 additions and 6 deletions

View File

@ -148,7 +148,7 @@ describe Msf::Ui::Console::CommandDispatcher::Db do
"",
"host service public private realm private_type",
"---- ------- ------ ------- ----- ------------",
" nonblank_pass Password"
" nonblank_pass Password",
]
end
end
@ -161,7 +161,7 @@ describe Msf::Ui::Console::CommandDispatcher::Db do
"",
"host service public private realm private_type",
"---- ------- ------ ------- ----- ------------",
" nonblank_user Password"
" nonblank_user Password",
]
end
end
@ -171,11 +171,11 @@ describe Msf::Ui::Console::CommandDispatcher::Db do
it "should return a blank set" do
db.cmd_creds("-u", nomatch_username)
@output.should =~ [
"===========",
"Credentials",
"===========",
"",
"host service public private realm private_type",
"---- ------- ------ ------- ----- ------------",
"host service public private realm private_type"
]
end
end
@ -183,11 +183,11 @@ describe Msf::Ui::Console::CommandDispatcher::Db do
it "should return a blank set" do
db.cmd_creds("-P", nomatch_password)
@output.should =~ [
"===========",
"Credentials",
"===========",
"",
"host service public private realm private_type",
"---- ------- ------ ------- ----- ------------",
"host service public private realm private_type"
]
end
end