From 73cccf1c29f1feba135996749acdac91eec4ff67 Mon Sep 17 00:00:00 2001 From: Dustin Sauriol <87393201+dts12263@users.noreply.github.com> Date: Fri, 16 Aug 2024 15:48:04 -0400 Subject: [PATCH 1/2] Update conftest.py fixing newly added mapdl.tbdat to mapdl.tbdata to fix the following [ERROR] TestFieldComponentValueGetter.test_temp - E AttributeError: 'MapdlGrpc' object has no attribute 'tbdat' [ERROR] TestFieldComponentValueGetter.test_pressure - E AttributeError: 'MapdlGrpc' object has no attribute 'tbdat' [ERROR] TestFieldComponentValueGetter.test_volt - E AttributeError: 'MapdlGrpc' object has no attribute 'tbdat' [ERROR] TestFieldComponentValueGetter.test_mag - E AttributeError: 'MapdlGrpc' object has no attribute 'tbdat' --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 24a2af22c0..47438a40c2 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -702,7 +702,7 @@ def box_with_fields(cleared, mapdl): mapdl.mp("murx", 1, 1) if mapdl.version >= 25.1: mapdl.tb("pm", 1, "", "", "perm") - mapdl.tbdat("", 0) + mapdl.tbdata("", 0) mapdl.et(1, "SOLID70") mapdl.et(2, "CPT215") From 54033aaea2b1355036129ac5a556b0612a11bd9c Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Fri, 16 Aug 2024 19:49:48 +0000 Subject: [PATCH 2/2] chore: adding changelog file 3362.miscellaneous.md --- doc/changelog.d/3362.miscellaneous.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/3362.miscellaneous.md diff --git a/doc/changelog.d/3362.miscellaneous.md b/doc/changelog.d/3362.miscellaneous.md new file mode 100644 index 0000000000..8affdc40b3 --- /dev/null +++ b/doc/changelog.d/3362.miscellaneous.md @@ -0,0 +1 @@ +Update conftest.py to switch mapdl.tbdat to mapdl.tbdata \ No newline at end of file