Skip to content

Commit 9819666

Browse files
committed
Move const variable to test_case.rb because it is used in some utility files
1 parent ceb3cca commit 9819666

16 files changed

+85
-84
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-
*INITIALIZE_MSG,
23+
*INITIALIZE_DAP_MSGS,
2424
{
2525
seq: 1,
2626
type: "response",

test/dap/break_test.rb

Lines changed: 2 additions & 2 deletions
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-
*INITIALIZE_MSG,
23+
*INITIALIZE_DAP_MSGS,
2424
{
2525
seq: 7,
2626
type: "event",
@@ -846,7 +846,7 @@ class BreakTest1643981380 < TestCase
846846
def test_check_run_to_line_works_correctly
847847
run_dap_scenario PROGRAM do
848848
[
849-
*INITIALIZE_MSG,
849+
*INITIALIZE_DAP_MSGS,
850850
{
851851
seq: 7,
852852
type: "event",

test/dap/call_stack_test.rb

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

test/dap/catch_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class CatchTest1643891417 < TestCase
1919
def test_catching_runtime_error_works_correctly_1643891417
2020
run_dap_scenario PROGRAM do
2121
[
22-
*INITIALIZE_MSG,
22+
*INITIALIZE_DAP_MSGS,
2323
{
2424
seq: 7,
2525
type: "event",
@@ -388,7 +388,7 @@ class CatchTest1643892185 < TestCase
388388
def test_catching_any_exception_works_correctly
389389
run_dap_scenario PROGRAM do
390390
[
391-
*INITIALIZE_MSG,
391+
*INITIALIZE_DAP_MSGS,
392392
{
393393
seq: 7,
394394
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-
*INITIALIZE_MSG,
26+
*INITIALIZE_DAP_MSGS,
2727
{
2828
seq: 7,
2929
type: "event",

test/dap/eval_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class EvalTest1643807667 < TestCase
1717
def test_eval_works_correctly_1643807667
1818
run_dap_scenario PROGRAM do
1919
[
20-
*INITIALIZE_MSG,
20+
*INITIALIZE_DAP_MSGS,
2121
{
2222
seq: 7,
2323
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-
*INITIALIZE_MSG,
23+
*INITIALIZE_DAP_MSGS,
2424
{
2525
seq: 7,
2626
type: "event",

test/dap/hover_test.rb

Lines changed: 2 additions & 2 deletions
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-
*INITIALIZE_MSG,
19+
*INITIALIZE_DAP_MSGS,
2020
{
2121
seq: 7,
2222
type: "event",
@@ -880,7 +880,7 @@ class HoverTest1641198331 < TestCase
880880
def test_1641198331
881881
run_dap_scenario PROGRAM do
882882
[
883-
*INITIALIZE_MSG,
883+
*INITIALIZE_DAP_MSGS,
884884
{
885885
seq: 7,
886886
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-
*INITIALIZE_MSG,
23+
*INITIALIZE_DAP_MSGS,
2424
{
2525
seq: 7,
2626
type: "event",

test/dap/restart_test.rb

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

0 commit comments

Comments
 (0)