fix(tvix/eval): make compare_strict_eval_tests use Strict

Previously, compare_strict_eval_tests() was using Strictness::Lazy.
This appears to be a minor oversight from
0ab6494286.

This commit corrects that, by changing Strictness::Lazy to
Strictness::Strict.

Change-Id: Ia2389a5d30481cd322ed55230731340b795e5d87
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9282
Tested-by: BuildkiteCI
Autosubmit: Adam Joseph <adam@westernsemico.com>
Reviewed-by: sterni <sternenseemann@systemli.org>
This commit is contained in:
Adam Joseph 2023-09-08 21:26:02 -07:00 committed by clbot
parent 737846bf17
commit 6fa80ecc3d

View file

@ -82,7 +82,7 @@ macro_rules! compare_eval_tests {
macro_rules! compare_strict_eval_tests {
($($tests:tt)*) => {
compare_eval_tests!(Strictness::Lazy, { $($tests)* });
compare_eval_tests!(Strictness::Strict, { $($tests)* });
}
}