diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2021-07-22 18:23:21 +0200 |
---|---|---|
committer | Vasil Dimov <vd@FreeBSD.org> | 2022-03-02 15:40:36 +0100 |
commit | 3cb9d9c861710c0cff018bee90b1969193d3ed68 (patch) | |
tree | f0db6729c585e7d8e819762cf9437a678d78590e /test/functional/p2p_message_capture.py | |
parent | 43868ba416727effd515a471e2a337c3b8cacc37 (diff) |
net: make CaptureMessage() mockable
Rename `CaptureMessage()` to `CaptureMessageToFile()` and introduce a
`std::function` variable called `CaptureMessage` whose value can be
changed by unit tests, should they need to inspect message contents.
Diffstat (limited to 'test/functional/p2p_message_capture.py')
-rwxr-xr-x | test/functional/p2p_message_capture.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/p2p_message_capture.py b/test/functional/p2p_message_capture.py index edde9a6ecf..0a7ae44de4 100755 --- a/test/functional/p2p_message_capture.py +++ b/test/functional/p2p_message_capture.py @@ -20,7 +20,7 @@ LENGTH_SIZE = 4 MSGTYPE_SIZE = 12 def mini_parser(dat_file): - """Parse a data file created by CaptureMessage. + """Parse a data file created by CaptureMessageToFile. From the data file we'll only check the structure. |