Rename function in text

This commit is contained in:
Isaac Shoebottom 2022-10-12 09:15:48 -03:00
parent 76d1fb6c53
commit f62c83ddbe

View File

@ -4,11 +4,11 @@ describe("add",
function() {
it("1 + 1 = 2",
function() {
expect(arith.add(1, 1)).toBe(2);
expect(arith.plus(1, 1)).toBe(2);
});
it("0 + x = x",
function() {
expect(arith.add(0, 1)).toBe(1);
expect(arith.plus(0, 1)).toBe(1);
});
});