fix(sum): ajuste erro no ultimo teste

This commit is contained in:
Caroline Moran 2022-10-27 15:21:02 -04:00
parent 8baf158b6a
commit 8380b20c4a

View File

@ -44,6 +44,6 @@ describe("sum", () => {
});
it("Dever retornar -40 quando passamos o array [-2, -7, -31]", () => {
expect(sum([-2, -7, -31])).toBe(-51);
})
expect(sum([-2, -7, -31])).toBe(-40);
});
});