Skip to content

Commit ebb3750

Browse files
marianosimoneko1
authored andcommitted
🐛 Fix test generator for protocol tests
1 parent a12f495 commit ebb3750

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/tool/test_builder.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ def #{@method}
363363
def create_scenario_and_program
364364
<<-TEST.chomp
365365
366-
class #{@class}#{@current_time} < TestCase
366+
class #{@class}#{@current_time} < ProtocolTestCase
367367
PROGRAM = <<~RUBY
368368
#{format_program}
369369
RUBY
@@ -399,7 +399,7 @@ def create_initialized_content
399399
<<~TEST
400400
# frozen_string_literal: true
401401
402-
require_relative '../support/test_case'
402+
require_relative '../support/protocol_test_case'
403403
404404
module DEBUGGER__
405405
#{create_scenario_and_program}
@@ -604,7 +604,7 @@ def #{@method}
604604
def create_scenario_and_program
605605
<<-TEST.chomp
606606
607-
class #{@class}#{@current_time} < TestCase
607+
class #{@class}#{@current_time} < ProtocolTestCase
608608
PROGRAM = <<~RUBY
609609
#{format_program}
610610
RUBY
@@ -640,7 +640,7 @@ def create_initialized_content
640640
<<~TEST
641641
# frozen_string_literal: true
642642
643-
require_relative '../support/test_case'
643+
require_relative '../support/protocol_test_case'
644644
645645
module DEBUGGER__
646646
#{create_scenario_and_program}

0 commit comments

Comments
 (0)