diff --git a/src/ansys/dpf/core/examples/downloads.py b/src/ansys/dpf/core/examples/downloads.py index dc5117803a..c361907369 100644 --- a/src/ansys/dpf/core/examples/downloads.py +++ b/src/ansys/dpf/core/examples/downloads.py @@ -1541,18 +1541,26 @@ def download_cfx_heating_coil( >>> from ansys.dpf.core import examples >>> paths = examples.download_cfx_heating_coil() >>> paths - {'cas': 'C:\\Users\\user\\AppData\\Local\\ansys-dpf-core\\ansys-dpf-core\\examples\\cfx-heating_coil\\HeatingCoil.res', - 'dat': 'C:\\Users\\user\\AppData\\Local\\ansys-dpf-core\\ansys-dpf-core\\examples\\cfx-heating_coil\\HeatingCoil.res'} # noqa: E501 + {'cas': 'C:\\Users\\user\\AppData\\Local\\ansys-dpf-core\\ansys-dpf-core\\examples\\cfx-heating_coil\\def.cas.cff', + 'dat': 'C:\\Users\\user\\AppData\\Local\\ansys-dpf-core\\ansys-dpf-core\\examples\\cfx-heating_coil\\def.dat.cff'} # noqa: E501 """ - file = _download_file( - "result_files/cfx-heating_coil", - "HeatingCoil.res", - should_upload, - server, - return_local_path, - ) - return {"cas": file, "dat": file} + return { + "cas": _download_file( + "result_files/cfx-heating_coil", + "def.cas.cff", + should_upload, + server, + return_local_path, + ), + "dat": _download_file( + "result_files/cfx-heating_coil", + "def.dat.cff", + should_upload, + server, + return_local_path, + ) + } def download_cfx_mixing_elbow( diff --git a/tests/test_cff.py b/tests/test_cff.py index 860d6b7b5b..e6d9979863 100644 --- a/tests/test_cff.py +++ b/tests/test_cff.py @@ -35,7 +35,6 @@ def test_results_cfx(cfx_heating_coil, server_type): "total_pressure", "density", "entropy", - "wall_shear_stress", "temperature", "total_temperature", "velocity", diff --git a/tests/test_resultinfo.py b/tests/test_resultinfo.py index 2898401897..a064e1e324 100644 --- a/tests/test_resultinfo.py +++ b/tests/test_resultinfo.py @@ -132,7 +132,6 @@ def test_print_result_info_with_qualifiers(cfx_heating_coil, server_type): - total_pressure: Nodal Total Pressure - density: Nodal Density - entropy: Nodal Entropy - - wall_shear_stress: Nodal Wall Shear Stress - temperature: Nodal Temperature - total_temperature: Nodal Total Temperature - velocity: Nodal Velocity