From dd642dd604cdf00fa4a29cd2eaca81fc461c6204 Mon Sep 17 00:00:00 2001 From: Andrew Myers Date: Mon, 4 Dec 2023 11:33:20 -0800 Subject: [PATCH] Fix typo in previous commit --- regtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regtest.py b/regtest.py index 3d6b842..458645f 100755 --- a/regtest.py +++ b/regtest.py @@ -867,7 +867,7 @@ def test_suite(argv): if test.particle_abs_tolerance is not None: command += " --abs_tol {}".format(test.particle_abs_tolerance) - command == "{} {} {}".format(bench_file, output_file, ptype) + command += "{} {} {}".format(bench_file, output_file, ptype) sout, _, ierr = test_util.run(command, outfile=test.comparison_outfile, store_command=True)