summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/coverage/multisource/bar.ts
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2023-12-11 19:24:20 +0900
committerGitHub <noreply@github.com>2023-12-11 19:24:20 +0900
commit073e341faf1ef56afb5a00061bf116c9ed3b3f13 (patch)
tree803aed5381911b923e8ad326eb68f6290b5b6c28 /cli/tests/testdata/coverage/multisource/bar.ts
parente9ab9ba9f0c47f01ebc41f3013b3f78962aaeca7 (diff)
fix(coverage): escape source code in html coverage report (#21531)
Diffstat (limited to 'cli/tests/testdata/coverage/multisource/bar.ts')
-rw-r--r--cli/tests/testdata/coverage/multisource/bar.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/testdata/coverage/multisource/bar.ts b/cli/tests/testdata/coverage/multisource/bar.ts
index 1bb10a0a6..123937b0b 100644
--- a/cli/tests/testdata/coverage/multisource/bar.ts
+++ b/cli/tests/testdata/coverage/multisource/bar.ts
@@ -1,4 +1,4 @@
-export function bar(cond: boolean) {
+export function bar<T>(cond: T) {
if (cond) {
return 1;
} else {