test/integration: fix unaddressed comments from CL 235201

Whoops, I forgot to mail the patchset. Sorry!

Change-Id: I93bf613aa1feb4bcba7a4173590ef210b7325b95
Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/238777
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
diff --git a/test/integration/codelens.test.ts b/test/integration/codelens.test.ts
index 9bd80c3..f28d81d 100644
--- a/test/integration/codelens.test.ts
+++ b/test/integration/codelens.test.ts
@@ -1,6 +1,5 @@
 /*---------------------------------------------------------
- * Copyright (C) Microsoft Corporation. All rights reserved.
- * Modification copyright 2020 The Go Authors. All rights reserved.
+ * Copyright 2020 The Go Authors. All rights reserved.
  * Licensed under the MIT License. See LICENSE in the project root for license information.
  *--------------------------------------------------------*/
 
diff --git a/test/integration/index.ts b/test/integration/index.ts
index a86f9cd..12e0292 100644
--- a/test/integration/index.ts
+++ b/test/integration/index.ts
@@ -15,7 +15,7 @@
 	const testsRoot = path.resolve(__dirname, '..');
 
 	return new Promise((c, e) => {
-		glob('integration/codelens.test.js', { cwd: testsRoot }, (err, files) => {
+		glob('integration/**.test.js', { cwd: testsRoot }, (err, files) => {
 			if (err) {
 				return e(err);
 			}