summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan McLellan <btm@loftninjas.org>2012-11-29 15:35:44 -0500
committerBryan McLellan <btm@loftninjas.org>2012-11-29 16:03:59 -0500
commit098f7a7e6434399ace33a1a313b95f1484653a1a (patch)
tree8e5761d983de6f7e89e4b49a7e696c251381a3c2
parent19d5a2ffd6d42a0f226555ea2cdeae79c6b42c0c (diff)
downloadchef-098f7a7e6434399ace33a1a313b95f1484653a1a.tar.gz
Update path for require
spec/support/prof/win32.rb became spec/support/platforms/prof/win32.rb in 1172bb6b4459d0cf0a0dc8d44ac8454a58aa4ede
-rw-r--r--chef/spec/support/matchers/leak.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/chef/spec/support/matchers/leak.rb b/chef/spec/support/matchers/leak.rb
index eb80fcd492..908770f042 100644
--- a/chef/spec/support/matchers/leak.rb
+++ b/chef/spec/support/matchers/leak.rb
@@ -60,7 +60,7 @@ module Matchers
def profiler
@profiler ||= begin
if Chef::Platform.windows?
- require File.join(File.dirname(__FILE__), '..', 'prof', 'win32')
+ require File.join(File.dirname(__FILE__), '..', 'platforms', 'prof', 'win32')
RSpec::Prof::Win32::Profiler.new
else
require File.join(File.dirname(__FILE__), '..', 'prof', 'gc')