1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

doc update

This commit is contained in:
Kelly Brazil
2022-11-01 15:28:50 -07:00
parent a2e6243282
commit ac1bcd2918
2 changed files with 5 additions and 4 deletions

View File

@ -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):
"""