diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eee15ea..884ff01 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,11 +67,6 @@ jobs: - name: Check out code 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 }} uses: actions/setup-python@v5 with: diff --git a/tests/test_coparun_module.py b/tests/test_coparun_module.py index 135db3d..5ec360f 100644 --- a/tests/test_coparun_module.py +++ b/tests/test_coparun_module.py @@ -5,7 +5,8 @@ from pytest import approx def function(c1, c2): i1 = c1 * 3.3 + 5 i2 = c2 * 5 + c1 - r1 = i1 + i2 * 55 / 4 + #r1 = i1 + i2 * 55 / 4 + r1 = i1 + i2 * 55 * 4 r2 = 4 * i2 + 5 return i1, i2, r1, r2