diff --git a/armi/reactor/tests/test_parameters.py b/armi/reactor/tests/test_parameters.py index cd6748607..beac1b852 100644 --- a/armi/reactor/tests/test_parameters.py +++ b/armi/reactor/tests/test_parameters.py @@ -542,8 +542,6 @@ def setUp(self): a.add(makeComp("block{}-{}".format(ai, bi))) self.comps = [self.r.core] + self.r.core.getChildren(deep=True) - for pd in MockSyncPC().paramDefs: - pd.assigned = parameters.NEVER @unittest.skipIf(context.MPI_SIZE <= 1 or MPI_EXE is None, "Parallel test only") def test_noConflicts(self): @@ -553,7 +551,7 @@ def test_noConflicts(self): :id: T_ARMI_CMP_MPI0 :tests: R_ARMI_CMP_MPI """ - syncCount = self.r.syncMpiState() + _syncCount = self.r.syncMpiState() for ci, comp in enumerate(self.comps): if ci % context.MPI_SIZE == context.MPI_RANK: @@ -569,7 +567,7 @@ def test_noConflicts(self): @unittest.skipIf(context.MPI_SIZE <= 1 or MPI_EXE is None, "Parallel test only") def test_withConflicts(self): - """Test conflicts arrise correctly if we force a conflict. + """Test conflicts arise correctly if we force a conflict. .. test:: Raise errors when there are conflicts across processes. :id: T_ARMI_CMP_MPI1