# HG changeset patch # User Nicholas R. Jankowski # Date 1714056460 14400 # Node ID 9d0dfb03853664405ad4eec0d968a7ec3a8128d0 # Parent c224e1a810d6e29741444c9b27c07895a4154350 view: correct BIST check value ordering from cset c224e1a810d6 (bug #65641) * view.m: correct switched azimuth and elevation ordering in test for bug #65641. diff -r c224e1a810d6 -r 9d0dfb038536 scripts/plot/appearance/view.m --- 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