Skip to content

Commit 76545e2

Browse files
Fixing lack of space in netsniff-ng filter
1 parent 1d2b2f3 commit 76545e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/validation/mtl_engine/RxTxApp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def prepare_netsniff(
150150
if src_ip:
151151
capture_filter += f"src {src_ip}"
152152
if dst_ip and not capture_filter == "":
153-
capture_filter += f"and dst {dst_ip}"
153+
capture_filter += f" and dst {dst_ip}"
154154
elif dst_ip:
155155
capture_filter += f"dst {dst_ip}"
156156
# Class prep

0 commit comments

Comments
 (0)