1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-15 20:40:05 +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, desc=Delete2 - has errs,
test=EQUALS 10 test=EQUALS 10
) )
%mp_assertdsobs(work.del1, %mp_assertdsobs(work.del2,
desc=Delete2 - records not populated, desc=Delete2 - records not populated,
test=EQUALS 0 test=EQUALS 0
) )
@@ -135,9 +135,9 @@ run;
*/ */
data work.orig4; data work.orig4;
set sashelp.electric; set sashelp.electric;
if _n_ ge 30; if _n_ ge 20;
year=_n_; year=_n_;
if _n_>35 then stop; if _n_>25 then stop;
run; run;
data work.final4; data work.final4;
set work.final; set work.final;