changeset 33457:9d0dfb038536

view: correct BIST check value ordering from cset c224e1a810d6 (bug #65641) * view.m: correct switched azimuth and elevation ordering in test for bug #65641.
author Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
date Thu, 25 Apr 2024 10:47:40 -0400
parents c224e1a810d6
children 1ad552012ffb
files scripts/plot/appearance/view.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/appearance/view.m	Thu Apr 25 10:32:17 2024 -0400
+++ b/scripts/plot/appearance/view.m	Thu Apr 25 10:47:40 2024 -0400
@@ -164,7 +164,7 @@
 %!   view (3);
 %!   view ([1, 0.001, 0]);
 %!   [az, el] = view ();
-%!   assert ([az, el], [0, 90 + 0.001*180/pi], eps);
+%!   assert ([az, el], [90 + 0.001*180/pi, 0], eps);
 %! unwind_protect_cleanup
 %!   close (hf);
 %! end_unwind_protect