Skip to content

Commit

Permalink
rename model
Browse files Browse the repository at this point in the history
  • Loading branch information
charmingduchess committed Jan 3, 2024
1 parent 946b5ad commit d70861e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pages/bib/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
yiddishBib,
} from "../../__test__/fixtures/bibFixtures"
import BibDetails from "../../src/components/BibPage/BibDetail"
import Bib from "../../src/models/Bib"
import Bib from "../../src/models/BibDetails"

const BibPage = () => {
const bibModel = new Bib(noParallels)
Expand Down
2 changes: 1 addition & 1 deletion src/components/BibPage/BibDetail.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
bibWithSupplementaryContent,
noParallels,
} from "../../../__test__/fixtures/bibFixtures"
import Bib from "../../models/Bib"
import Bib from "../../models/BibDetails"
import BibDetails from "./BibDetail"

import { render, screen, act } from "@testing-library/react"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/models/modelTests/Bib.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
parallelsBib,
yiddishBib,
} from "../../../__test__/fixtures/bibFixtures"
import Bib from "../Bib"
import Bib from "../BibDetails"

describe("Bib model", () => {
const bibWithSupContentModel = new Bib(bibWithSupplementaryContent)
Expand Down

0 comments on commit d70861e

Please sign in to comment.