@@ -13,7 +13,6 @@ import { getConfiguredTools } from '../../src/goTools';
13
13
import { getGoVersion } from '../../src/util' ;
14
14
import { resolveHomeDir } from '../../src/utils/pathUtils' ;
15
15
import { MockExtensionContext } from '../mocks/MockContext' ;
16
- import { affectedByIssue832 } from './testutils' ;
17
16
18
17
suite ( 'GoExplorerProvider' , ( ) => {
19
18
const fixtureDir = path . join ( __dirname , '../../../test/testdata/baseTest' ) ;
@@ -37,15 +36,12 @@ suite('GoExplorerProvider', () => {
37
36
assert . strictEqual ( env . contextValue , 'go:explorer:envtree' ) ;
38
37
} ) ;
39
38
40
- test ( 'env tree items' , async function ( ) {
41
- if ( affectedByIssue832 ( ) ) {
42
- this . skip ( ) ;
43
- }
39
+ test ( 'env tree items' , async ( ) => {
44
40
const [ env ] = await explorer . getChildren ( ) ! ;
45
41
const [ goenv , gomod ] = ( await explorer . getChildren ( env ) ) as { key : string ; value : string } [ ] ;
46
42
assert . strictEqual ( goenv . key , 'GOENV' ) ;
47
43
assert . strictEqual ( gomod . key , 'GOMOD' ) ;
48
- assert . strictEqual ( resolveHomeDir ( gomod . value ) , ` ${ fixtureDir } / go.mod` ) ;
44
+ assert . strictEqual ( resolveHomeDir ( gomod . value ) , path . join ( fixtureDir , ' go.mod' ) ) ;
49
45
} ) ;
50
46
51
47
test ( 'tools tree' , async ( ) => {
0 commit comments