From c2dd75777cfc6675c98d019d188ee032d42d7dba Mon Sep 17 00:00:00 2001 From: Andy Waite Date: Fri, 10 Mar 2023 13:09:51 -0500 Subject: [PATCH] Fix test builder --- CONTRIBUTING.md | 4 ++-- test/tool/test_builder.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 22c8bfcf0..68ca46798 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -149,10 +149,10 @@ If the file already exists, **only method** will be added to it. ```ruby # frozen_string_literal: true -require_relative '../support/test_case' +require_relative '../support/console_test_case' module DEBUGGER__ - class FooTest < TestCase + class FooTest < ConsoleTestCase def program <<~RUBY 1| module Foo diff --git a/test/tool/test_builder.rb b/test/tool/test_builder.rb index be48a5514..45fe10843 100644 --- a/test/tool/test_builder.rb +++ b/test/tool/test_builder.rb @@ -157,7 +157,7 @@ def #{@method} def create_scenario_and_program <<-TEST.chomp - class #{@class}#{@current_time} < TestCase + class #{@class}#{@current_time} < ConsoleTestCase def program <<~RUBY #{format_program}