From f77e438439c455d403d8787e6257dee69fa51acf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=F0=9F=91=A9=E2=80=8D=F0=9F=92=BB=20Pooja=20Dave?= <66514063+pooja1515@users.noreply.github.com> Date: Fri, 23 Jan 2026 11:46:55 +0530 Subject: [PATCH] Update test case for Add function In result prev. result and expected not matched now it is changed from. 2 to 3 --- main_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main_test.go b/main_test.go index c3c912a..c83996a 100644 --- a/main_test.go +++ b/main_test.go @@ -4,7 +4,7 @@ import "testing" func TestAdd(t *testing.T) { expected := 4 - result := Add(1, 2) + result := Add(1, 3) if result != expected { t.Errorf("Test Failed: Expected %d, but got %d", expected, result) }