From 96299c6a5350f59eab022a09400eddcc347daede Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sat, 14 Apr 2018 21:23:31 +0200 Subject: Add lightweight processing for PDF --- tests/test_climat2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_climat2.py') diff --git a/tests/test_climat2.py b/tests/test_climat2.py index b9c52b5..64345eb 100644 --- a/tests/test_climat2.py +++ b/tests/test_climat2.py @@ -6,12 +6,12 @@ class TestHelp(unittest.TestCase): def test_help(self): proc = subprocess.Popen(['./main.py', '--help'], stdout=subprocess.PIPE) stdout, _ = proc.communicate() - self.assertIn(b'usage: main.py [-h] [-c] [-l] [-s] [files [files ...]]', stdout) + self.assertIn(b'usage: main.py [-h] [-c] [-l] [-s] [-L] [files [files ...]]', stdout) def test_no_arg(self): proc = subprocess.Popen(['./main.py'], stdout=subprocess.PIPE) stdout, _ = proc.communicate() - self.assertIn(b'usage: main.py [-h] [-c] [-l] [-s] [files [files ...]]', stdout) + self.assertIn(b'usage: main.py [-h] [-c] [-l] [-s] [-L] [files [files ...]]', stdout) class TestGetMeta(unittest.TestCase): -- cgit v1.3