From ac1bcd29184cf05c0b6c2a011dc9fcb29de58a9f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 1 Nov 2022 15:28:50 -0700 Subject: [PATCH] doc update --- CHANGELOG | 3 ++- tests/test_proc.py | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f2ec532b..3592061a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,8 @@ jc changelog -20221025 v1.22.2 +20221101 v1.22.2 - add `sshd_conf` parser +- add `findmnt` parser - fix `csv` and `csv-s` parsers for UTF-8 encoded CSV files with leading BOM bytes - fix exit code to be non-zero on interrupt - allow parser module objects to be used as arguments to `jc.get_help()` and `jc.parser_info()` diff --git a/tests/test_proc.py b/tests/test_proc.py index e5989ef7..db55e0fe 100644 --- a/tests/test_proc.py +++ b/tests/test_proc.py @@ -221,11 +221,11 @@ class MyTests(unittest.TestCase): cls.f_json[file] = json.loads(b.read()) - def test_foo_nodata(self): + def test_proc_nodata(self): """ - Test 'foo' with no data + Test proc parser with no data """ - self.assertRaises(ParseError, jc.parsers.proc.parse, '') + self.assertRaises(ParseError, jc.parsers.proc.parse, '', quiet=True) def test_proc_file_signature_detection(self): """