Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
minnakt committed Oct 6, 2023
1 parent 1f85e3e commit 95cc7de
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/pages/commits/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ describe("getMainlineCommitsQueryVariables", () => {
projectIdentifier: "projectIdentifier",
limit: 5,
skipOrderNumber: 0,
revision: "",
revision: "revision",
},
filterState: {
statuses: [],
Expand All @@ -94,6 +94,7 @@ describe("getMainlineCommitsQueryVariables", () => {
limit: 5,
projectIdentifier: "projectIdentifier",
skipOrderNumber: 0,
revision: "revision",
shouldCollapse: false,
requesters: [],
});
Expand All @@ -105,7 +106,7 @@ describe("getMainlineCommitsQueryVariables", () => {
projectIdentifier: "projectIdentifier",
limit: 5,
skipOrderNumber: 0,
revision: "",
revision: "revision",
},
filterState: {
statuses: [],
Expand All @@ -119,6 +120,7 @@ describe("getMainlineCommitsQueryVariables", () => {
limit: 5,
projectIdentifier: "projectIdentifier",
skipOrderNumber: 0,
revision: "revision",
shouldCollapse: true,
requesters: [],
});
Expand All @@ -128,7 +130,7 @@ describe("getMainlineCommitsQueryVariables", () => {
projectIdentifier: "projectIdentifier",
limit: 5,
skipOrderNumber: 0,
revision: "",
revision: "revision",
},
filterState: {
statuses: [TaskStatus.Succeeded],
Expand All @@ -142,6 +144,7 @@ describe("getMainlineCommitsQueryVariables", () => {
limit: 5,
projectIdentifier: "projectIdentifier",
skipOrderNumber: 0,
revision: "revision",
shouldCollapse: true,
requesters: [],
});
Expand All @@ -151,7 +154,7 @@ describe("getMainlineCommitsQueryVariables", () => {
projectIdentifier: "projectIdentifier",
limit: 5,
skipOrderNumber: 0,
revision: "",
revision: "revision",
},
filterState: {
statuses: [],
Expand All @@ -165,6 +168,7 @@ describe("getMainlineCommitsQueryVariables", () => {
limit: 5,
projectIdentifier: "projectIdentifier",
skipOrderNumber: 0,
revision: "revision",
shouldCollapse: true,
requesters: [],
});
Expand All @@ -174,7 +178,7 @@ describe("getMainlineCommitsQueryVariables", () => {
projectIdentifier: "projectIdentifier",
limit: 5,
skipOrderNumber: 0,
revision: "",
revision: "revision",
},
filterState: {
statuses: [],
Expand All @@ -188,6 +192,7 @@ describe("getMainlineCommitsQueryVariables", () => {
limit: 5,
projectIdentifier: "projectIdentifier",
skipOrderNumber: 0,
revision: "revision",
shouldCollapse: true,
requesters: [],
});
Expand Down

0 comments on commit 95cc7de

Please sign in to comment.