summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Albers <bjoernalbers@googlemail.com>2012-06-04 12:59:59 +0200
committerBryan McLellan <btm@opscode.com>2012-06-07 13:26:58 -0700
commitd545439ef6fbfea917f9d27003a5228d12eda222 (patch)
tree9b7f0263a5ed1d84318eb80d9ea33266efe0e965
parent6eb038711cc4b40f858fab3a674318cfda564bbe (diff)
downloadmixlib-log-d545439ef6fbfea917f9d27003a5228d12eda222.tar.gz
Fix obsolete require statement for rspec
(The old one brakes with RSpec 2.*)
-rw-r--r--features/support/env.rb2
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'