summaryrefslogtreecommitdiff
path: root/tests/testdata/publish/successful/mod.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/publish/successful/mod.ts')
-rw-r--r--tests/testdata/publish/successful/mod.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/testdata/publish/successful/mod.ts b/tests/testdata/publish/successful/mod.ts
index 4bb6da255..6e8a61bae 100644
--- a/tests/testdata/publish/successful/mod.ts
+++ b/tests/testdata/publish/successful/mod.ts
@@ -1,5 +1,7 @@
import http from "@std/http";
export function foobar(): { fileServer(): void } {
- return http.fileServer;
+ return {
+ fileServer: http.fileServer,
+ };
}