Skip to content

Commit 27b93e3

Browse files
authored
Merge pull request #2489 from intuit/test-refs
Update some test refs
2 parents c696169 + 16e4c0c commit 27b93e3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

plugins/cocoapods/__tests__/cocoapods.test.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ describe("Cocoapods Plugin", () => {
104104
data: {
105105
head: {
106106
repo: {
107-
clone_url: "https://github.com/intuit-fork/auto.git",
107+
clone_url: "https://github.com/intuit/auto-test.git",
108108
},
109109
},
110110
},
@@ -200,7 +200,7 @@ describe("Cocoapods Plugin", () => {
200200
await expect(
201201
updateSourceLocation(
202202
"./Test.podspec",
203-
"https://github.com/somefork/auto.git"
203+
"https://github.com/intuit/auto-fork.git"
204204
)
205205
).rejects.toThrowError(
206206
"Error updating source location in podspec: ./Test.podspec"
@@ -215,13 +215,13 @@ describe("Cocoapods Plugin", () => {
215215

216216
await updateSourceLocation(
217217
"./Test.podspec",
218-
"https://github.com/somefork/auto.git"
218+
"https://github.com/intuit/auto-fork.git"
219219
);
220220
expect(mock).lastCalledWith(
221221
expect.any(String),
222222
specWithVersion(
223223
"0.0.1",
224-
"{ :git => 'https://github.com/somefork/auto.git', :commit => 'commithash' }"
224+
"{ :git => 'https://github.com/intuit/auto-fork.git', :commit => 'commithash' }"
225225
)
226226
);
227227
});
@@ -559,7 +559,7 @@ describe("Cocoapods Plugin", () => {
559559
expect.any(String),
560560
specWithVersion(
561561
"0.1.0-canary.1.1.1",
562-
"{ :git => 'https://github.com/intuit-fork/auto.git', :commit => 'undefined' }"
562+
"{ :git => 'https://github.com/intuit/auto-test.git', :commit => 'undefined' }"
563563
)
564564
);
565565
});
@@ -592,14 +592,14 @@ describe("Cocoapods Plugin", () => {
592592
"./Test.podspec",
593593
specWithVersion(
594594
"0.1.0-canary.1.1.1",
595-
"{ :git => 'https://github.com/intuit-fork/auto.git', :commit => 'undefined' }"
595+
"{ :git => 'https://github.com/intuit/auto-test.git', :commit => 'undefined' }"
596596
)
597597
);
598598
expect(mock).toHaveBeenCalledWith(
599599
"./Test2.podspec",
600600
specWithVersion(
601601
"0.1.0-canary.1.1.1",
602-
"{ :git => 'https://github.com/intuit-fork/auto.git', :commit => 'undefined' }"
602+
"{ :git => 'https://github.com/intuit/auto-test.git', :commit => 'undefined' }"
603603
)
604604
);
605605
});

0 commit comments

Comments
 (0)