summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsersut <serdar@opscode.com>2013-08-20 16:28:41 +0300
committersersut <serdar@opscode.com>2013-08-20 16:28:41 +0300
commit4de4932a019e583cdf8fd20621ca5459cf557018 (patch)
treef0f49baed1ee3a995ce317e591c4d075415afdfb
parent221d12397bbb49120b9aeba6d7c953fd490d1daf (diff)
downloadchef-4de4932a019e583cdf8fd20621ca5459cf557018.tar.gz
One more fix for knife config spec on windows.
-rw-r--r--chef/spec/unit/knife/configure_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/chef/spec/unit/knife/configure_spec.rb b/chef/spec/unit/knife/configure_spec.rb
index 3b956c64ae..b0e31079fb 100644
--- a/chef/spec/unit/knife/configure_spec.rb
+++ b/chef/spec/unit/knife/configure_spec.rb
@@ -109,7 +109,7 @@ describe Chef::Knife::Configure do
@knife.ask_user_for_config
@out.string.should_not match(Regexp.escape("Please enter the location of the existing admin client's private key: [/etc/chef/webui.pem]"))
if windows?
- @knife.admin_client_key.capitalize.should_not == 'C:/etc//chef/webui.pem'
+ @knife.admin_client_key.should_not == 'C:/etc//chef/webui.pem'
else
@knife.admin_client_key.should_not == '/etc/chef/webui.pem'
end