From 48dc9dc9857c88a97fcf83a90c279dbac132224e Mon Sep 17 00:00:00 2001 From: Agoston Date: Thu, 21 May 2026 19:47:32 +0100 Subject: [PATCH] test: intentionally break add for downstream failure test --- src/mathlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathlib.cpp b/src/mathlib.cpp index e0988ed..0c7a038 100644 --- a/src/mathlib.cpp +++ b/src/mathlib.cpp @@ -2,7 +2,7 @@ namespace mathlib { int add(int a, int b) { - return a + b; + return a - b; // intentional break for failure test } std::string greet(const std::string& name) {