From ca44ae210916c102631388cbd744d69f3f4e37b6 Mon Sep 17 00:00:00 2001 From: James Lee Date: Tue, 27 Jan 2015 08:41:24 -0600 Subject: [PATCH] Consistent commas --- .../lib/msf/ui/console/command_dispatcher/db_spec.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spec/lib/msf/ui/console/command_dispatcher/db_spec.rb b/spec/lib/msf/ui/console/command_dispatcher/db_spec.rb index 32d11b65a3..afb8de1e12 100644 --- a/spec/lib/msf/ui/console/command_dispatcher/db_spec.rb +++ b/spec/lib/msf/ui/console/command_dispatcher/db_spec.rb @@ -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