summaryrefslogtreecommitdiff
path: root/tests/test_climat2.py
diff options
context:
space:
mode:
authorgeorg2019-11-28 02:15:20 +0000
committerjvoisin2019-11-30 01:14:41 -0800
commit697cb36b814d7e01da336c43b1932264302a2528 (patch)
treec14075024469adf5aa30614c95173cada156229c /tests/test_climat2.py
parent6e52661cfb4e79a76a6ff80637d5adf495a15479 (diff)
This is mat2, not MAT2
Closes #131
Diffstat (limited to '')
-rw-r--r--tests/test_climat2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_climat2.py b/tests/test_climat2.py
index da790d0..8ab7cbd 100644
--- a/tests/test_climat2.py
+++ b/tests/test_climat2.py
@@ -40,14 +40,14 @@ class TestVersion(unittest.TestCase):
40 def test_version(self): 40 def test_version(self):
41 proc = subprocess.Popen(mat2_binary + ['--version'], stdout=subprocess.PIPE) 41 proc = subprocess.Popen(mat2_binary + ['--version'], stdout=subprocess.PIPE)
42 stdout, _ = proc.communicate() 42 stdout, _ = proc.communicate()
43 self.assertTrue(stdout.startswith(b'MAT2 ')) 43 self.assertTrue(stdout.startswith(b'mat2 '))
44 44
45 45
46class TestDependencies(unittest.TestCase): 46class TestDependencies(unittest.TestCase):
47 def test_dependencies(self): 47 def test_dependencies(self):
48 proc = subprocess.Popen(mat2_binary + ['--check-dependencies'], stdout=subprocess.PIPE) 48 proc = subprocess.Popen(mat2_binary + ['--check-dependencies'], stdout=subprocess.PIPE)
49 stdout, _ = proc.communicate() 49 stdout, _ = proc.communicate()
50 self.assertTrue(b'MAT2' in stdout) 50 self.assertTrue(b'mat2' in stdout)
51 51
52 52
53class TestReturnValue(unittest.TestCase): 53class TestReturnValue(unittest.TestCase):