Skip to content

Commit 7a1eb81

Browse files
committed
tests: Fix tests with CXX backends
1 parent d7a4a60 commit 7a1eb81

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2066,7 +2066,7 @@ def test_indirection(self):
20662066
class TestEstimateMemory:
20672067
"""Tests for the Operator.estimate_memory() utility"""
20682068

2069-
_array_temp = "r0[x][y]"
2069+
_array_temp = "r0L0(x, y)" if "CXX" in configuration['language'] else "r0[x][y]"
20702070

20712071
def parse_output(self, output, expected):
20722072
"""Parse estimate_memory machine-readable output"""

0 commit comments

Comments
 (0)