diff --git a/app/__pycache__/__init__.cpython-312.pyc b/app/__pycache__/__init__.cpython-312.pyc new file mode 100644 index 0000000..369a55a Binary files /dev/null and b/app/__pycache__/__init__.cpython-312.pyc differ diff --git a/app/__pycache__/main.cpython-312.pyc b/app/__pycache__/main.cpython-312.pyc new file mode 100644 index 0000000..358ccaa Binary files /dev/null and b/app/__pycache__/main.cpython-312.pyc differ diff --git a/app/__pycache__/models.cpython-312.pyc b/app/__pycache__/models.cpython-312.pyc new file mode 100644 index 0000000..7a8bc73 Binary files /dev/null and b/app/__pycache__/models.cpython-312.pyc differ diff --git a/app/__pycache__/store.cpython-312.pyc b/app/__pycache__/store.cpython-312.pyc new file mode 100644 index 0000000..6e3af87 Binary files /dev/null and b/app/__pycache__/store.cpython-312.pyc differ diff --git a/app/main.py b/app/main.py index bf69788..c22c2ef 100644 --- a/app/main.py +++ b/app/main.py @@ -26,7 +26,7 @@ def health_check(): @app.get("/sum") def compute_sum(a: int = Query(...), b: int = Query(...)): - return {"result": a * b} + return {"result": a + b} def format_profile(data): diff --git a/tests/__pycache__/conftest.cpython-312-pytest-9.0.1.pyc b/tests/__pycache__/conftest.cpython-312-pytest-9.0.1.pyc new file mode 100644 index 0000000..58fcdc9 Binary files /dev/null and b/tests/__pycache__/conftest.cpython-312-pytest-9.0.1.pyc differ diff --git a/tests/__pycache__/test_sum.cpython-312-pytest-9.0.1.pyc b/tests/__pycache__/test_sum.cpython-312-pytest-9.0.1.pyc new file mode 100644 index 0000000..2f5f577 Binary files /dev/null and b/tests/__pycache__/test_sum.cpython-312-pytest-9.0.1.pyc differ