From cdbb070d26938baa7d2b9c64b1bc0318f688163a Mon Sep 17 00:00:00 2001 From: Sterling Harper Date: Mon, 29 Jun 2015 19:26:52 -0600 Subject: [PATCH] Remove unnecessary cast #402 --- tests/testing_harness.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testing_harness.py b/tests/testing_harness.py index 6d35ef9786..ced1a653f7 100644 --- a/tests/testing_harness.py +++ b/tests/testing_harness.py @@ -66,7 +66,7 @@ class TestHarness(object): def _run_openmc(self): if self._opts.mpi_exec: - mpi_procs = int(self._opts.mpi_np) + mpi_procs = self._opts.mpi_np else: mpi_procs = 1