1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-10 22:14:35 +00:00

fix: fixing tests for mp_chop

This commit is contained in:
munja
2022-04-27 12:14:26 +01:00
parent 0728f72c4f
commit 9ea6c875f2

View File

@@ -49,22 +49,22 @@ data _null_;
run;
%mp_assert(
iftrue=("&test1" ne "startsection"),
iftrue=("&test1" = "startsection"),
desc=Checking keep FIRST matchpoint START
outds=work.test_results
)
%mp_assert(
iftrue=("&test2" ne "Chop here!endsection"),
iftrue=("&test2" = "Chop here!endsection"),
desc=Checking keep LAST matchpoint START
outds=work.test_results
)
%mp_assert(
iftrue=("&test1" ne "startsectionChop here!"),
iftrue=("&test3" = "startsectionChop here!"),
desc=Checking keep FIRST matchpoint END
outds=work.test_results
)
%mp_assert(
iftrue=("&test2" ne "endsection"),
iftrue=("&test4" = "endsection"),
desc=Checking keep LAST matchpoint END
outds=work.test_results
)