Skip to content

Commit

Permalink
forgotten rename
Browse files Browse the repository at this point in the history
  • Loading branch information
rouk1 committed Oct 2, 2024
1 parent fe836d2 commit 4fb8903
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions frontend/tests/stores/project.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe("Project store", () => {
const projectStore = useProjectStore();

const epoch = new Date("1970-01-01T00:00:00Z").toISOString();
function makeFakeReportItem() {
function makeFakeViewItem() {
return {
media_type: "text/markdown",
value: "",
Expand All @@ -41,11 +41,11 @@ describe("Project store", () => {
}
const project = {
items: {
a: makeFakeReportItem(),
"a/b": makeFakeReportItem(),
"a/b/d": makeFakeReportItem(),
"a/b/e": makeFakeReportItem(),
"a/b/f/g": makeFakeReportItem(),
a: makeFakeViewItem(),
"a/b": makeFakeViewItem(),
"a/b/d": makeFakeViewItem(),
"a/b/e": makeFakeViewItem(),
"a/b/f/g": makeFakeViewItem(),
},
views: {},
};
Expand Down

0 comments on commit 4fb8903

Please sign in to comment.