Skip to content

Commit

Permalink
fix import path
Browse files Browse the repository at this point in the history
  • Loading branch information
ian-antking committed Sep 27, 2024
1 parent 97e043a commit a967394
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/reports/resolvedExceptionsReport.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import resolvedExceptionsReport, { ResolvedExceptionsReportLine } from "./ResolvedExceptionsReport"
import fs from "fs"
import generateAho from "../../../test/helpers/generateAho"
import CourtCase from "services/entities/CourtCase"
import ResolvedExceptionsReport, { ResolvedExceptionsReportLine } from "./ResolvedExceptionsReport"

describe("resolvedExceptionsReport", () => {
it("returns a list of resolved exceptions", () => {
Expand Down Expand Up @@ -45,7 +45,7 @@ describe("resolvedExceptionsReport", () => {
}
] as unknown as CourtCase[]

const result = resolvedExceptionsReport(courtCases)
const result = ResolvedExceptionsReport(courtCases)

expect(result).toEqual([
{
Expand Down

0 comments on commit a967394

Please sign in to comment.