Skip to content

Commit 6013e18

Browse files
committed
Fix type issues in test files.
1 parent 1dc06f1 commit 6013e18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/common/providers/https.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async function runCallableTest(test: CallTest): Promise<any> {
7070
expect(request.data).to.deep.equal(test.expectedData);
7171
return test.callableFunction2(request);
7272
},
73-
"v2"
73+
"gcfv2"
7474
);
7575

7676
const responseV2 = await runHandler(callableFunctionV2, test.httpRequest);
@@ -773,7 +773,7 @@ describe("onCallHandler", () => {
773773
resp.write("hello");
774774
return "world";
775775
},
776-
"v2"
776+
"gcfv2"
777777
);
778778

779779
const resp = await runHandler(fn, mockReq);
@@ -795,7 +795,7 @@ describe("onCallHandler", () => {
795795
() => {
796796
throw new Error("BOOM");
797797
},
798-
"v2"
798+
"gcfv2"
799799
);
800800

801801
const resp = await runHandler(fn, mockReq);

0 commit comments

Comments
 (0)