This commit is contained in:
Adria Navarro 2024-03-14 18:39:08 +01:00
parent 029ac07fa2
commit 03122b464f
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ describe("Test that the object processing works correctly", () => {
it("should be able to handle null objects", async () => {
let error = null
try {
await processObject(null, null)
await processObject(null as any, null as any)
} catch (err) {
error = err
}