diff options
| -rw-r--r-- | test/ext/capture_output.rb | 2 | ||||
| -rw-r--r-- | test/test_helper.rb | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/test/ext/capture_output.rb b/test/ext/capture_output.rb index ee98808..a469e21 100644 --- a/test/ext/capture_output.rb +++ b/test/ext/capture_output.rb @@ -16,7 +16,7 @@ module CaptureOutput      @stdout.string    end  end -class MiniTest::Test +class MiniTest::Unit::TestCase    include CaptureOutput  end diff --git a/test/test_helper.rb b/test/test_helper.rb index f091451..47d3517 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -27,7 +27,7 @@ require 'fakeweb'  # require test extensions/helpers  Dir[File.dirname(__FILE__) + '/ext/*.rb'].each { |ext| require ext } -class HCl::TestCase < MiniTest::Test +class HCl::TestCase < MiniTest::Unit::TestCase    def setup      FakeWeb.allow_net_connect = false      HCl::Net.configure \ | 
