Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
paulacamargo25 committed Mar 20, 2024
1 parent 2ffc320 commit 9206e7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ suite('Debugging - Configuration Provider Django', () => {
test('Show picker and send parsed found managepy paths', async () => {
const folder = { uri: Uri.parse(path.join('one', 'two')), name: '1', index: 0 };
const state = { config: {}, folder };
const managePath = Uri.parse(path.join(folder.uri.fsPath, 'manage.py'));
const managePath = Uri.file(path.join(folder.uri.fsPath, 'manage.py'));
console.log('Folder:', folder.uri.fsPath);
console.log('managePath: ', managePath);
getDjangoPathsStub.resolves([managePath]);
Expand Down

0 comments on commit 9206e7b

Please sign in to comment.