Skip to content

Commit fb59120

Browse files
fix tests
1 parent 34e0862 commit fb59120

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/unittest/configuration/providers/djangoLaunch.unit.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ suite('Debugging - Configuration Provider Django', () => {
3737
test('Show picker and send parsed found managepy paths', async () => {
3838
const folder = { uri: Uri.parse(path.join('one', 'two')), name: '1', index: 0 };
3939
const state = { config: {}, folder };
40-
const managePath = Uri.parse(path.join(folder.uri.fsPath, 'manage.py'));
40+
const managePath = Uri.file(path.join(folder.uri.fsPath, 'manage.py'));
4141
console.log('Folder:', folder.uri.fsPath);
4242
console.log('managePath: ', managePath);
4343
getDjangoPathsStub.resolves([managePath]);

0 commit comments

Comments
 (0)