Skip to content

Commit

Permalink
🐛 Fix test generator for protocol tests
Browse files Browse the repository at this point in the history
  • Loading branch information
marianosimone authored and ko1 committed Oct 4, 2022
1 parent a12f495 commit ebb3750
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/tool/test_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def #{@method}
def create_scenario_and_program
<<-TEST.chomp
class #{@class}#{@current_time} < TestCase
class #{@class}#{@current_time} < ProtocolTestCase
PROGRAM = <<~RUBY
#{format_program}
RUBY
Expand Down Expand Up @@ -399,7 +399,7 @@ def create_initialized_content
<<~TEST
# frozen_string_literal: true
require_relative '../support/test_case'
require_relative '../support/protocol_test_case'
module DEBUGGER__
#{create_scenario_and_program}
Expand Down Expand Up @@ -604,7 +604,7 @@ def #{@method}
def create_scenario_and_program
<<-TEST.chomp
class #{@class}#{@current_time} < TestCase
class #{@class}#{@current_time} < ProtocolTestCase
PROGRAM = <<~RUBY
#{format_program}
RUBY
Expand Down Expand Up @@ -640,7 +640,7 @@ def create_initialized_content
<<~TEST
# frozen_string_literal: true
require_relative '../support/test_case'
require_relative '../support/protocol_test_case'
module DEBUGGER__
#{create_scenario_and_program}
Expand Down

0 comments on commit ebb3750

Please sign in to comment.