diff --git a/pystencils_tests/test_cuda_known_functions.py b/pystencils_tests/test_cuda_known_functions.py index cd0304f8f14f2d6a120194e138ac8ccb938633dd..fe33b98df27cc6a6c2ec77eda49e704b9afbec5e 100644 --- a/pystencils_tests/test_cuda_known_functions.py +++ b/pystencils_tests/test_cuda_known_functions.py @@ -32,8 +32,7 @@ def test_cuda_but_not_c(): }) ast = pystencils.create_kernel(assignments, 'cpu') - code = str(pystencils.show_code(ast)) - assert "Not supported" in code + print(pystencils.show_code(ast)) def test_cuda_unknown(): @@ -46,4 +45,3 @@ def test_cuda_unknown(): ast = pystencils.create_kernel(assignments, 'gpu') code = str(pystencils.show_code(ast)) print(code) - assert "Not supported in CUDA" in code