From 4fb0d52d4bd9045e5bc33335ebad1fc5e1a4346e Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Thu, 10 Nov 2016 19:50:25 -0500 Subject: [PATCH] [Test] Remove printed output from tests --- interfaces/cython/cantera/test/test_thermo.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/interfaces/cython/cantera/test/test_thermo.py b/interfaces/cython/cantera/test/test_thermo.py index a973eb886..dd204498e 100644 --- a/interfaces/cython/cantera/test/test_thermo.py +++ b/interfaces/cython/cantera/test/test_thermo.py @@ -709,7 +709,9 @@ class TestThermo(utilities.CanteraTest): self.assertTrue(self.gas.T > self.gas.max_temp) def test_volume(self): - """ This phase should follow the ideal gas law """ + """ + This phase should follow the ideal gas law + """ g = self.gas self.assertNear(g.P, g.density_mole * ct.gas_constant * g.T)