Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Nov 3, 2024
1 parent 9dc67c2 commit 2324a3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ following softwares to run the interop test:

* [Docker](https://docs.docker.com/engine/install/) and [docker compose](https://docs.docker.com/compose/).

* [Development version of Wireshark](https://www.wireshark.org/download.html) (version 3.4.2 or newer).
* [Development version of Wireshark](https://www.wireshark.org/download.html) (version 3.5.0 or newer).

## Running the Interop Runner

Expand Down
5 changes: 4 additions & 1 deletion testcases.py
Original file line number Diff line number Diff line change
Expand Up @@ -1330,7 +1330,10 @@ def desc():
@staticmethod
def scenario() -> str:
"""Scenario for the ns3 simulator"""
return super(TestCaseAddressRebinding).scenario() + " --rebind-addr"
return (
super(TestCaseAddressRebinding, TestCaseAddressRebinding).scenario()
+ " --rebind-addr"
)

def check(self) -> TestResult:
if not self._keylog_file():
Expand Down

0 comments on commit 2324a3d

Please sign in to comment.