From 4ee90e4e6f20c6247d2e9c1684ba12165515035c Mon Sep 17 00:00:00 2001 From: Dario Lombardo Date: Fri, 13 Dec 2019 12:17:10 +0100 Subject: [PATCH] test: fix comment. Change-Id: I71a28535f2c9081e965004f02ec85ff500f9278b Reviewed-on: https://code.wireshark.org/review/35428 Reviewed-by: Dario Lombardo --- test/suite_outputformats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/suite_outputformats.py b/test/suite_outputformats.py index c5a0a66f3e..bc5bf51e89 100644 --- a/test/suite_outputformats.py +++ b/test/suite_outputformats.py @@ -17,9 +17,9 @@ from matchers import * @fixtures.fixture def check_outputformat(cmd_tshark, request, dirs, capture_file): - ''' Check a capture file against a sample, in json format. ''' def check_outputformat_real(format_option, pcap_file='dhcp.pcap', extra_args=[], expected=None, multiline=False): + ''' Check a capture file against a sample, in json format. ''' self = request.instance tshark_proc = self.assertRun([cmd_tshark, '-r', capture_file(pcap_file), '-T', format_option] + extra_args)