Skip to content

Commit f32c6b5

Browse files
author
ono-max
committed
Rename "CFG_DAP" to "INITIALIZE_MSG"
1 parent 44f685c commit f32c6b5

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

test/dap/boot_config_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class BootConfigTest1638611290 < TestCase
2020
def test_boot_configuration_works_correctly
2121
run_dap_scenario PROGRAM do
2222
[
23-
*CFG_DAP,
23+
*INITIALIZE_MSG,
2424
{
2525
seq: 1,
2626
type: "response",

test/dap/break_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class BreakTest1638674577 < TestCase
2020
def test_break_works_correctly
2121
run_dap_scenario PROGRAM do
2222
[
23-
*CFG_DAP,
23+
*INITIALIZE_MSG,
2424
{
2525
seq: 7,
2626
type: "event",

test/dap/detach_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class DetachTest1639218122 < TestCase
2323
def test_1639218122
2424
run_dap_scenario PROGRAM do
2525
[
26-
*CFG_DAP,
26+
*INITIALIZE_MSG,
2727
{
2828
seq: 7,
2929
type: "event",

test/dap/finish_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class FinishTest1638674323 < TestCase
2020
def test_finish_works_correctly
2121
run_dap_scenario PROGRAM do
2222
[
23-
*CFG_DAP,
23+
*INITIALIZE_MSG,
2424
{
2525
seq: 7,
2626
type: "event",

test/dap/hover_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class HoverTest1638791703 < TestCase
1616
def test_hover_works_correctly
1717
run_dap_scenario PROGRAM do
1818
[
19-
*CFG_DAP,
19+
*INITIALIZE_MSG,
2020
{
2121
seq: 7,
2222
type: "event",

test/dap/next_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class NextTest1638676688 < TestCase
2020
def test_next_works_correctly
2121
run_dap_scenario PROGRAM do
2222
[
23-
*CFG_DAP,
23+
*INITIALIZE_MSG,
2424
{
2525
seq: 7,
2626
type: "event",

test/dap/step_back_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class StepBackTest1638698086 < TestCase
2222
def test_step_back_works_correctly
2323
run_dap_scenario PROGRAM do
2424
[
25-
*CFG_DAP,
25+
*INITIALIZE_MSG,
2626
{
2727
seq: 7,
2828
type: "event",

test/dap/step_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class StepTest1638676609 < TestCase
2020
def test_step_works_correctly
2121
run_dap_scenario PROGRAM do
2222
[
23-
*CFG_DAP,
23+
*INITIALIZE_MSG,
2424
{
2525
seq: 7,
2626
type: "event",

test/support/dap_utils.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def create_protocol_msg msgs, remote_info, fail_msg
7575
MSG
7676
end
7777

78-
CFG_DAP = [
78+
INITIALIZE_MSG = [
7979
{
8080
seq: 1,
8181
command: "initialize",

test/tool/test_builder.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def create_scenario
354354
def #{@method}
355355
run_dap_scenario PROGRAM do
356356
[
357-
*CFG_DAP,
357+
*INITIALIZE_MSG,
358358
#{format_scenario}
359359
]
360360
end

0 commit comments

Comments
 (0)