1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-11 06:24:35 +00:00

fix: test cases in mp_stackdiffs.test.sas

This commit is contained in:
munja
2022-01-25 13:50:29 +01:00
parent 794ceec33c
commit 6e0fe0ff25

View File

@@ -96,7 +96,7 @@ run;
desc=Delete2 - has errs,
test=EQUALS 10
)
%mp_assertdsobs(work.del1,
%mp_assertdsobs(work.del2,
desc=Delete2 - records not populated,
test=EQUALS 0
)
@@ -135,9 +135,9 @@ run;
*/
data work.orig4;
set sashelp.electric;
if _n_ ge 30;
if _n_ ge 20;
year=_n_;
if _n_>35 then stop;
if _n_>25 then stop;
run;
data work.final4;
set work.final;