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) } }