This commit is contained in:
Nicolas 2025-10-07 23:21:57 +02:00
parent e67ecd7c98
commit 997e797689
2 changed files with 2 additions and 6 deletions

View File

@ -67,11 +67,6 @@ jobs:
- name: Check out code - name: Check out code
uses: actions/checkout@v4 uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: stencil-object-files
path: src/copapy/obj
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:

View File

@ -5,7 +5,8 @@ from pytest import approx
def function(c1, c2): def function(c1, c2):
i1 = c1 * 3.3 + 5 i1 = c1 * 3.3 + 5
i2 = c2 * 5 + c1 i2 = c2 * 5 + c1
r1 = i1 + i2 * 55 / 4 #r1 = i1 + i2 * 55 / 4
r1 = i1 + i2 * 55 * 4
r2 = 4 * i2 + 5 r2 = 4 * i2 + 5
return i1, i2, r1, r2 return i1, i2, r1, r2