1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-06 09:00:06 +00:00

fix: tests with new APIs are now passing

This commit is contained in:
Allan Bowe
2022-06-16 11:37:31 +00:00
parent cb553a31ab
commit a1c931b5e6
6 changed files with 33 additions and 64 deletions

View File

@@ -28,9 +28,12 @@
%mp_assertdsobs(work.test1,test=ATLEAST 1)
%let test2=0;
%put &=group;
data _null_;
set work.test1;
if groupname="&group" then do;
putlog (_all_)(=);
if upcase(name)="%upcase(&group)" then do;
putlog "&group found!";
call symputx('test2',1);
call symputx('gid',groupid); /* used in next test */
end;