test/integration/goExplorer: fix 'env tree items' test

use path.join for file path

For golang/vscode-go#832

Change-Id: I03817df9ee3cbdff6b5d537377112548a6055d1b
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/418779
TryBot-Result: kokoro <noreply+kokoro@google.com>
Reviewed-by: Jamal Carvalho <jamal@golang.org>
Run-TryBot: Hyang-Ah Hana Kim <hyangah@gmail.com>
diff --git a/test/integration/goExplorer.test.ts b/test/integration/goExplorer.test.ts
index abe2dad..27ce150 100644
--- a/test/integration/goExplorer.test.ts
+++ b/test/integration/goExplorer.test.ts
@@ -13,7 +13,6 @@
 import { getGoVersion } from '../../src/util';
 import { resolveHomeDir } from '../../src/utils/pathUtils';
 import { MockExtensionContext } from '../mocks/MockContext';
-import { affectedByIssue832 } from './testutils';
 
 suite('GoExplorerProvider', () => {
 	const fixtureDir = path.join(__dirname, '../../../test/testdata/baseTest');
@@ -37,15 +36,12 @@
 		assert.strictEqual(env.contextValue, 'go:explorer:envtree');
 	});
 
-	test('env tree items', async function () {
-		if (affectedByIssue832()) {
-			this.skip();
-		}
+	test('env tree items', async () => {
 		const [env] = await explorer.getChildren()!;
 		const [goenv, gomod] = (await explorer.getChildren(env)) as { key: string; value: string }[];
 		assert.strictEqual(goenv.key, 'GOENV');
 		assert.strictEqual(gomod.key, 'GOMOD');
-		assert.strictEqual(resolveHomeDir(gomod.value), `${fixtureDir}/go.mod`);
+		assert.strictEqual(resolveHomeDir(gomod.value), path.join(fixtureDir, 'go.mod'));
 	});
 
 	test('tools tree', async () => {