diff options
author | Björn Albers <bjoernalbers@googlemail.com> | 2012-06-04 12:59:59 +0200 |
---|---|---|
committer | Bryan McLellan <btm@opscode.com> | 2012-06-07 13:26:58 -0700 |
commit | d545439ef6fbfea917f9d27003a5228d12eda222 (patch) | |
tree | 9b7f0263a5ed1d84318eb80d9ea33266efe0e965 /features | |
parent | 6eb038711cc4b40f858fab3a674318cfda564bbe (diff) | |
download | mixlib-log-d545439ef6fbfea917f9d27003a5228d12eda222.tar.gz |
Fix obsolete require statement for rspec
(The old one brakes with RSpec 2.*)
Diffstat (limited to 'features')
-rw-r--r-- | features/support/env.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/support/env.rb b/features/support/env.rb index 56dee6c..d3b315a 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -18,7 +18,7 @@ $: << File.join(File.dirname(__FILE__), '..', '..', 'lib') -require 'spec/expectations' +require 'rspec/expectations' require 'mixlib/log' require 'tmpdir' require 'stringio' |