Skip to content

Commit 8ea615a

Browse files
elierichaAnthonyLeonardoGracio
authored andcommitted
Update test to fix GPR warning on file and unit name mismatch
(cherry picked from commit 6ae978a)
1 parent 0b2e850 commit 8ea615a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: integration/vscode/ada/test/general/codelens.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ suite('CodeLens', function () {
2323
const codelenses = await getCodeLenses('src', 'main1.adb');
2424
assert.deepEqual(simplifyCodelenses(codelenses), [
2525
{
26-
range: '9:0 -> 15:9',
26+
range: '9:0 -> 15:10',
2727
command: {
2828
title: '$(run) Run',
2929
command: 'ada.buildAndRunMain',
3030
arguments: ['src/main1.adb'],
3131
},
3232
},
3333
{
34-
range: '9:0 -> 15:9',
34+
range: '9:0 -> 15:10',
3535
command: {
3636
title: '$(debug-alt-small) Debug',
3737
command: 'ada.buildAndDebugMain',

Diff for: integration/vscode/ada/test/general/ws/src/main1.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ with Foo;
77
-- Main --
88
----------
99

10-
procedure Main is
10+
procedure Main1 is
1111

1212
begin
1313

1414
null;
1515

16-
end Main;
16+
end Main1;

0 commit comments

Comments
 (0)