Skip to content

Commit ef80236

Browse files
Merge branch 'topic/fix_windows' into 'master'
Fix test on Windows See merge request eng/ide/ada_language_server!1905
2 parents 4706bfc + 04022ee commit ef80236

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

integration/vscode/ada/test/general/extension.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ suite('Extensions Test Suite', function () {
8888
// to the project's root directory (workspace directory)
8989
await vscode.commands.executeCommand('als-reload-project');
9090
try {
91-
assert.strictEqual(await adaExtState.getObjectDir(), folder.fsPath);
91+
const objDirValue = await adaExtState.getObjectDir();
92+
const objDirURI = vscode.Uri.file(objDirValue);
93+
assert.strictEqual(objDirURI.fsPath, folder.fsPath);
9294
} finally {
9395
// Restore the old GPR file contents
9496
writeFileSync(fileUri.fsPath, contentBefore);

0 commit comments

Comments
 (0)