From 2a23f2c162050e53d2fd9a53a12de295c8e1f3e3 Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Wed, 1 May 2024 04:54:27 +0000 Subject: Revert "style(scale): Apply black to new traffic profiles" This reverts commit 4e2635deff33db4bea476003ac222ffd9ab504b1. Change-Id: Idb9145fbf13e7943392a72f77ef9a1b479187732 Signed-off-by: Peter Mikus --- .../trex/trex-stl-ethip4-ip4dst-rnd100000-2p.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd100000-2p.py') diff --git a/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd100000-2p.py b/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd100000-2p.py index 29a3731a1c..8f66f13680 100644 --- a/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd100000-2p.py +++ b/GPL/traffic_profiles/trex/trex-stl-ethip4-ip4dst-rnd100000-2p.py @@ -53,7 +53,7 @@ class TrafficStreams(TrafficStreamsScaleClass): "src_start_ip": "20.0.0.1", "dst_start_ip": "10.0.0.0", "dst_end_ip": "10.1.134.159", - }, + } ] self.pkt_base = [] self.pkt_vm = [] @@ -68,11 +68,11 @@ class TrafficStreams(TrafficStreamsScaleClass): """ for i in range(len(self.pkt_data)): self.pkt_base.append( - Ether() - / IP( + Ether() / + IP( src=self.pkt_data[i]["src_start_ip"], dst=self.pkt_data[i]["dst_start_ip"], - proto=61, + proto=61 ) ) self.pkt_vm.append( @@ -84,15 +84,15 @@ class TrafficStreams(TrafficStreamsScaleClass): max_value=self.pkt_data[i]["dst_end_ip"], size=4, seed=i + 1, - limit=(2**24 - 1), + limit=(2**24 - 1) ), STLVmWrFlowVar( fv_name="dst", - pkt_offset="IP.dst", + pkt_offset="IP.dst" ), STLVmFixIpv4( - offset="IP", - ), + offset="IP" + ) ] ) ) -- cgit 1.2.3-korg