Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tknickman committed Aug 8, 2024
1 parent b843dbf commit 66241cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/daemon/proto/turbod.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";

option go_package = "github.com/vercel/turbo/cli/internal/turbodprotocol";
option go_package = "github.com/vercel/turborepo/cli/internal/turbodprotocol";

package turbodprotocol;

Expand Down
8 changes: 4 additions & 4 deletions packages/turbo-utils/__tests__/examples.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe("examples", () => {
.spyOn(got, "head")
.mockReturnValue({ statusCode: 401 } as any);

const url = "https://not-github.com/vercel/turbo/";
const url = "https://not-github.com/vercel/turborepo/";
const result = await isUrlOk(url);
expect(result).toBe(false);

Expand All @@ -45,7 +45,7 @@ describe("examples", () => {
expectBranchLookup: true,
expected: {
username: "vercel",
name: "turbo",
name: "turborepo",
branch: "main",
filePath: "",
},
Expand All @@ -58,7 +58,7 @@ describe("examples", () => {
expectBranchLookup: false,
expected: {
username: "vercel",
name: "turbo",
name: "turborepo",
branch: "canary",
filePath: "examples/kitchen-sink",
},
Expand All @@ -70,7 +70,7 @@ describe("examples", () => {
expectBranchLookup: false,
expected: {
username: "vercel",
name: "turbo",
name: "turborepo",
branch: "tek/test-branch",
filePath: "examples/basic",
},
Expand Down

0 comments on commit 66241cb

Please sign in to comment.