From ce8775c4682fb1c179f970fd0424f27e812bdb81 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Mon, 28 Mar 2022 12:12:34 -0400 Subject: [PATCH] update test --- src/parsing.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/parsing.rs b/src/parsing.rs index 9938e71..1e29923 100644 --- a/src/parsing.rs +++ b/src/parsing.rs @@ -303,15 +303,12 @@ mod tests { ("pipipipipipi", "π*π*π*π*π*π"), ("10pi", "10*π"), ("pi10", "π*10"), + ("emax(x)", "e*max(x)"), + // ("pisin(x)", "pi*sin(x)"), ]); for (key, value) in values { test_process_helper(key, value); } - - // Need to fix these checks, maybe I need to rewrite the whole asterisk - // adding system... (or just implement these changes into meval-rs, idk) - // test_process_helper("emax(x)", "e*max(x)"); - // test_process_helper("pisin(x)", "pi*sin(x)"); } }