From fd6820443cf529125c85ab18371e0b5e3b7af5c7 Mon Sep 17 00:00:00 2001 From: Enrico Guiraud Date: Sun, 1 Oct 2023 16:24:46 -0600 Subject: [PATCH] Also test I/O of multiplication operation --- tests/test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test.cpp b/tests/test.cpp index 0d796e2..d95480b 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -62,11 +62,11 @@ TEST(Graph, MulEval) { } TEST(Tests, WriteAndReadGraph) { - const Const c{40.}; + const Const c{20.}; const Var x{"x"}; const Inputs inputs{{"x", 2.}}; - const Graph g1 = x + c; + const Graph g1 = x + c * x; // write out const absl::Status status = to_file(g1, "test.pb");