Skip to content

Commit b5b98e2

Browse files
committed
fix
1 parent 01cdcec commit b5b98e2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/suite/providers.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ suite("Github", async () => {
4040
"git@github.com:recipeyak/recipeyak",
4141
"org-XYZ123@github.com:recipeyak/recipeyak",
4242
]) {
43-
async function findRemote(hostname: string) {
43+
const findRemote = async (hostname: string) => {
4444
return url
4545
}
4646
const gh = new Github({}, "origin", findRemote)
@@ -75,7 +75,7 @@ suite("Github", async () => {
7575
"org-XYZ123@github.mycompany.com:recipeyak/recipeyak",
7676
"ssh://git@github.mycompany.com/recipeyak/recipeyak.git",
7777
]) {
78-
async function findRemote(hostname: string) {
78+
const findRemote = async (hostname: string) => {
7979
return url
8080
}
8181
const gh = new Github(
@@ -116,7 +116,7 @@ suite("Github", async () => {
116116
"org-XYZ123@github.mycompany.com:recipeyak/recipeyak",
117117
"ssh://git@github.mycompany.com/recipeyak/recipeyak.git",
118118
]) {
119-
async function findRemote(hostname: string) {
119+
const findRemote = async (hostname: string) => {
120120
return url
121121
}
122122
const gh = new Github(

0 commit comments

Comments
 (0)