From cfa4c5e5f62cc24a0945abf7f0ae72a4f62588cb Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 7 Feb 2026 14:32:14 +0500 Subject: [PATCH] broke the test --- internal/parser/parser_test.go | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/internal/parser/parser_test.go b/internal/parser/parser_test.go index 9d3c904..db80cc9 100644 --- a/internal/parser/parser_test.go +++ b/internal/parser/parser_test.go @@ -10,8 +10,14 @@ func TestExample(t *testing.T) { } func TestExample2(t *testing.T) { - sum := 2 + 2 - if sum != 4 { + sum := 2 + 3 + if sum != 5 { + t.Errorf("Expected 4, got %d", sum) + } +} +func TestExample3(t *testing.T) { + sum := 3 + 3 + if sum != 6 { t.Errorf("Expected 4, got %d", sum) } }