Skip to content

Commit

Permalink
Fix test builder
Browse files Browse the repository at this point in the history
  • Loading branch information
andyw8 authored and ko1 committed Mar 14, 2023
1 parent c258ee0 commit 64552e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/tool/test_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 64552e2

Please sign in to comment.